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{})
| 850 | // a.IsNonIncreasing([]float{2, 1}) |
| 851 | // a.IsNonIncreasing([]string{"b", "a"}) |
| 852 | func (a *Assertions) IsNonIncreasing(object interface{}, msgAndArgs ...interface{}) bool { |
| 853 | if h, ok := a.t.(tHelper); ok { |
| 854 | h.Helper() |
| 855 | } |
| 856 | return IsNonIncreasing(a.t, object, msgAndArgs...) |
| 857 | } |
| 858 | |
| 859 | // IsNonIncreasingf asserts that the collection is not increasing |
| 860 | // |
nothing calls this directly
no test coverage detected