A flexible library for adding assertions to types.
```rust extern crate expect;
use std::default::Default; use expect::{Expect, Assertion};
struct Point { x: f64, y: f64 }
// Clockwise from the top left.
struct Square(Point, Point, Point, Point);
struct Contains(Point);
impl Assertion
fn main() { let square = Square( Point { x: 0.0, y: 1.0 }, Point { x: 1.0, y: 1.0 }, Point { x: 1.0, y: 0.0 }, Point { x: 0.0, y: 0.0 }, );
square
.expect(Contains(Point { x: 0.5, y: 0.18 }))
.expect(Contains(Point { x: 0.12, y: 0.9 }))
// You can also use tuples of Assertions.
.expect((Contains(Point { x: 0.63, y: 0.4 }),
Contains(Point { x: 0.7, y: 0.85 })));
} ```
Note that even though this example is a single file/crate, the true power
of using Assertion
s and expect
is that Assertion
s can be defined in
a separate crate.
Use the crates.io repository; add this to your Cargo.toml
along
with the rest of your dependencies:
toml
[dependencies]
expect = "*"
Jonathan Reem is the primary author and maintainer of expect.
MIT