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