A port of Hamcrest to Rust. Fork of original hamcrest-rust (which is unmaintained) with extra matchers, better docs etc.
To use Hamcrest, add this to your Cargo.toml
:
[dev-dependencies]
hamcrest2 = "*"
And this to your crate root:
``` rust
```
After a quick cargo build
, you should be good to go!
Hamcrest2 supports a number of matchers. The easiest way is to just use
them all like this:
rust
use hamcrest2::prelude::*;
If you want to be more selective make sure that you also import the HamcrestMatcher
trait.
rust
assert_that!(1, eq(1)); // also equal_to()
assert_that!(1, not(eq(2)));
rust
assert_that!(1, lt(2)); // also less_than()
assert_that!(1, leq(1)); // also less_than_or_equal_to()
assert_that!(2, gt(1)); // also greater_than()
assert_that!(2, geq(2)); // also greater_than_or_equal_to()
rust
assert_that!(123usize, type_of::<usize>());
assert_that!("test", type_of::<&str>());
rust
assert_that!("1234", matches_regex(r"\d"));
assert_that!("abc", does_not(match_regex(r"\d")));
rust
assert_that!(1e-40f32, close_to(0.0, 0.01));
assert_that!(1e-40f32, not(close_to(0.0, 0.000001)));
rust
assert_that!(&path, existing_path());
assert_that!(&path, existing_file());
assert_that!(&path, not(existing_dir()));
``` rust
let var: Option
let var: Result
``` rust
let var: Option
assert_that!(Some(1), some::
let var: Option
``` rust
let var: Option
assertthat!(None, none::
``` rust assertthat!(&vec!(1i, 2, 3), contains(vec!(1i, 2))); assertthat!(&vec!(1i, 2, 3), not(contains(vec!(4i))));
assertthat!(&vec!(1i, 2, 3), contains(vec!(1i, 2, 3)).exactly()); assertthat!(&vec!(1i, 2, 3), not(contains(vec!(1i, 2)).exactly()));
assertthat!(&vec!(1i, 2, 3), contains(vec!(1i, 2)).inorder()); assertthat!(&vec!(1i, 2, 3), not(contains(vec!(1i, 3)).inorder())); ```
rust
assert_that!(4, all_of!(lt(5), gt(3))); // also all!()
assert_that!(
&vec![1, 2, 3],
all_of!(contains(vec![1, 2]), not(contains(vec![4])))
);
rust
assert_that!(4, any_of!(less_than(2), greater_than(3))); // also any!()
assert_that!(
&vec![1, 2, 3],
any_of!(contains(vec![1, 2, 5]), not(contains(vec![4])))
);
rust
assert_that!(true, is(true));
assert_that!(false, is(false));
rust
assert_that!(42, anything());
assert_that!("test", is(anything()));
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.