IsNonIncreasing asserts that the collection is not increasing a.IsNonIncreasing([]int{2, 1, 1}) a.IsNonIncreasing([]float{2, 1}) a.IsNonIncreasing([]string{"b", "a"})
(object interface{}, msgAndArgs ...interface{})
| 865 | // a.IsNonIncreasing([]float{2, 1}) |
| 866 | // a.IsNonIncreasing([]string{"b", "a"}) |
| 867 | func (a *Assertions) IsNonIncreasing(object interface{}, msgAndArgs ...interface{}) { |
| 868 | if h, ok := a.t.(tHelper); ok { |
| 869 | h.Helper() |
| 870 | } |
| 871 | IsNonIncreasing(a.t, object, msgAndArgs...) |
| 872 | } |
| 873 | |
| 874 | // IsNonIncreasingf asserts that the collection is not increasing |
| 875 | // |
nothing calls this directly
no test coverage detected