検索
Results of 1 - 10 of about 16 for passed (0.002 sec.)
- Unit testing - Rust By Example 日本語版 14989
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...ilures: tests::test_bad_add test result: FAILED. 1 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out T...sts::test_specific_panic ... ok test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out D...st-should-panic running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out R...st tests::test_any_panic ... ok test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 2 filtered out D... - https://man.plustar.jp/rust/example/testing/unit_testing.html - [similar]
- 引数のパース - Rust By Example 日本語版 9548
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...gs().collect(); match args.len() { // no arguments passed // 引数がない場合 1 => { println!("My name is 'mat...Try passing some arguments!"); }, // one argument passed // 引数が1つの場合 2 => { match args[1].parse() {...he answer."), } }, // one command and one argument passed // コマンドが一つと引数が一つの場合 3 => { let cmd... - https://man.plustar.jp/rust/example/std_misc/arg/matching.html - [similar]
- Integration testing - Rust By Example 日本語版 9548
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...d: $ cargo test running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out R...ing 1 test test test_add ... ok test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out D...oc-tests adder running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out E... - https://man.plustar.jp/rust/example/testing/integration_testing.html - [similar]
- Tests - Rust By Example 日本語版 8664
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...bar ... ok test test_foo ... ok test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out パ...... ok test test_foo_bar ... ok test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 2 filtered out 注... - https://man.plustar.jp/rust/example/cargo/test.html - [similar]
- Documentation testing - Rust By Example 日本語版 8664
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...: $ cargo test running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out D...c/lib.rs - div (line 31) ... ok test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out M... - https://man.plustar.jp/rust/example/testing/doc_testing.html - [similar]
- ジェネリックトレイト - Rust By Example 日本語版 8075
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...<T> for U { // This method takes ownership of both passed arguments, // deallocating both. // このメソッドは... - https://man.plustar.jp/rust/example/generics/gen_trait.html - [similar]
- 引数処理 - Rust By Example 日本語版 8075
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
....", args[0]); // The rest of the arguments are the passed command line parameters. // Call the program like... - https://man.plustar.jp/rust/example/std_misc/arg.html - [similar]
- メソッド - Rust By Example 日本語版 7936
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...Note that the first argument `&self` is implicitly passed, i.e. // メソッドはドット演算子を用いて呼び出される... - https://man.plustar.jp/rust/example/fn/methods.html - [similar]
- 関数 - Rust By Example 日本語版 7936
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...owing functions all take ownership of the variable passed into // them and immediately go out of scope, free... - https://man.plustar.jp/rust/example/generics/gen_fn.html - [similar]
- DRY (Don't Repeat Yourself) - Rust By Example 日本語版 7936
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...ok test test::sub_assign ... ok test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured 関連キーワード: a... - https://man.plustar.jp/rust/example/macros/dry.html - [similar]