IsDecreasing asserts that the collection is decreasing a.IsDecreasing([]int{2, 1, 0}) a.IsDecreasing([]float{2, 1}) a.IsDecreasing([]string{"b", "a"})
(object interface{}, msgAndArgs ...interface{})
| 778 | // a.IsDecreasing([]float{2, 1}) |
| 779 | // a.IsDecreasing([]string{"b", "a"}) |
| 780 | func (a *Assertions) IsDecreasing(object interface{}, msgAndArgs ...interface{}) bool { |
| 781 | if h, ok := a.t.(tHelper); ok { |
| 782 | h.Helper() |
| 783 | } |
| 784 | return IsDecreasing(a.t, object, msgAndArgs...) |
| 785 | } |
| 786 | |
| 787 | // IsDecreasingf asserts that the collection is decreasing |
| 788 | // |
nothing calls this directly
no test coverage detected