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{})
| 816 | // a.IsIncreasingf([]float{1, 2}, "error message %s", "formatted") |
| 817 | // a.IsIncreasingf([]string{"a", "b"}, "error message %s", "formatted") |
| 818 | func (a *Assertions) IsIncreasingf(object interface{}, msg string, args ...interface{}) { |
| 819 | if h, ok := a.t.(tHelper); ok { |
| 820 | h.Helper() |
| 821 | } |
| 822 | IsIncreasingf(a.t, object, msg, args...) |
| 823 | } |
| 824 | |
| 825 | // IsNonDecreasing asserts that the collection is not decreasing |
| 826 | // |
nothing calls this directly
no test coverage detected