running 3 tests
test tests::test_f32_at_least_returns_self_if_self_eq_min ... ok
test tests::test_f32_at_least_returns_min_if_self_lt_min ... ok
test tests::test_f32_at_least_returns_self_if_self_gt_min ... ok
Is there any way to get results like this?
In other words, can I use custom labels for test functions?
test `f32::at_least(min) returns self if self == min` ... ok
test `f32::at_least(min) returns min if self < min` ... ok
test `f32::at_least(min) returns self if self > min` ... ok
You can use namespaces to help make things easier to read (e.g. f32::at_least::returns_self::if_self_eq_self), but it's not possible to use a custom label for your tests.