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