use fluent_test::prelude::*;
#[test]
fn test_basic_assertions() {
fluent_test::config().enhanced_output(true).apply();
let value = 42;
expect!(value).to_equal(42);
expect!(value).not().to_equal(13);
expect!(value).to_be_greater_than(30);
expect!(value).to_be_less_than(50);
}
#[test]
fn test_with_standard_assertions() {
let value = 42;
assert_eq!(value, 42);
fluent_test::config().enhanced_output(true).apply();
expect!(value).to_be_even();
}
#[test]
#[should_panic]
fn test_failure_reporting() {
fluent_test::config().enhanced_output(true).apply();
let my_special_value = 13;
expect!(my_special_value).to_be_even();
}