IsIncreasingf asserts that the collection is increasing a.IsIncreasingf([]int{1, 2, 3}, "error message %s", "formatted") a.IsIncreasingf([]float{1, 2}, "error message %s", "formatted") a.IsIncreasingf([]string{"a", "b"}, "error message %s", "formatted")
(object interface{}, msg string, args ...interface{})
| 828 | // a.IsIncreasingf([]float{1, 2}, "error message %s", "formatted") |
| 829 | // a.IsIncreasingf([]string{"a", "b"}, "error message %s", "formatted") |
| 830 | func (a *Assertions) IsIncreasingf(object interface{}, msg string, args ...interface{}) bool { |
| 831 | if h, ok := a.t.(tHelper); ok { |
| 832 | h.Helper() |
| 833 | } |
| 834 | return IsIncreasingf(a.t, object, msg, args...) |
| 835 | } |
| 836 | |
| 837 | // IsNonDecreasing asserts that the collection is not decreasing |
| 838 | // |
nothing calls this directly
no test coverage detected