検索
Results of 1 - 9 of about 9 for running (0.019 sec.)
- Unit testing - Rust By Example 日本語版 13661
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
} Tests can be run with cargo test . $ cargo test running 2 tests test tests::test_bad_add ... FAILED test t...
cific_panic() { divide_non_zero_result(1, 10); } } Running these tests gives us: $ cargo test running 3 tests...
ed; 0 filtered out Doc-tests tmp-test-should-panic running 0 tests test result: ok. 0 passed; 0 failed; 0 ign...
ored; 0 measured; 0 filtered out Running specific tests To run specific tests one may speci...
- https://man.plustar.jp/rust/example/testing/unit_testing.html - [similar]
- Integration testing - Rust By Example 日本語版 9940
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
fn test_add() { assert_eq!(adder::add(3, 2), 5); } Running tests with cargo test command: $ cargo test runnin...
d; 0 failed; 0 ignored; 0 measured; 0 filtered out Running target/debug/deps/integration_test-bcd60824f5fbfe1...
9 running 1 test test test_add ... ok test result: ok. 1 pas...
gnored; 0 measured; 0 filtered out Doc-tests adder running 0 tests test result: ok. 0 passed; 0 failed; 0 ign...
- https://man.plustar.jp/rust/example/testing/integration_testing.html - [similar]
- Tests - Rust By Example 日本語版 9221
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
v [unoptimized + debuginfo] target(s) in 0.89 secs Running target/debug/deps/blah-d3b32b97275ec472 running 3...
v [unoptimized + debuginfo] target(s) in 0.35 secs Running target/debug/deps/blah-d3b32b97275ec472 running 2...
- https://man.plustar.jp/rust/example/cargo/test.html - [similar]
- cfg - Rust By Example 日本語版 8394
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
linux")] fn are_you_on_linux() { println!("You are running linux!"); } // And this function only gets compile...
)] fn are_you_on_linux() { println!("You are *not* running linux!"); } fn main() { are_you_on_linux(); printl...
- https://man.plustar.jp/rust/example/attribute/cfg.html - [similar]
- Documentation testing - Rust By Example 日本語版 8286
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
} Tests can be run with cargo test : $ cargo test running 0 tests test result: ok. 0 passed; 0 failed; 0 ign...
; 0 measured; 0 filtered out Doc-tests doccomments running 3 tests test src/lib.rs - add (line 7) ... ok test...
- https://man.plustar.jp/rust/example/testing/doc_testing.html - [similar]
- read lines - Rust By Example 日本語版 7873
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
filename)?; Ok(io::BufReader::new(file).lines()) } Running this program simply prints the lines individually....
- https://man.plustar.jp/rust/example/std_misc/file/read_lines.html - [similar]
- dropの延期 - Rust By Example 日本語版 7873
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
main"); } $ rustc wait.rs && ./wait # `wait` keeps running for 5 seconds until the `sleep 5` command finishes...
- https://man.plustar.jp/rust/example/std_misc/process/wait.html - [similar]
- DRY (Don't Repeat Yourself) - Rust By Example 日本語版 7765
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
u32, 2u32, 1u32); } $ rustc --test dry.rs && ./dry running 3 tests test test::mul_assign ... ok test test::ad...
- https://man.plustar.jp/rust/example/macros/dry.html - [similar]
- スタティックライフタイム - Rust By Example 日本語版 7765
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
the reference lives for the entire lifetime of the running program. It can still be coerced to a shorter life...
- https://man.plustar.jp/rust/example/scope/lifetime/static_lifetime.html - [similar]
PREV
1
NEXT