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