galvanic_assert::matchers

Function gt

Source
pub fn gt<'a, T: PartialOrd + Debug + 'a>(
    expected: T,
) -> Box<dyn Matcher<'a, T> + 'a>
Expand description

Matches if the asserted value is greater than the expected value.

This is the same as greater_than.

#Examples

use galvanic_assert::matchers::*;
assert_that!(&(1+1), gt(1));