IsIncreasing asserts that the collection is increasing a.IsIncreasing([]int{1, 2, 3}) a.IsIncreasing([]float{1, 2}) a.IsIncreasing([]string{"a", "b"})
(object interface{}, msgAndArgs ...interface{})
| 802 | // a.IsIncreasing([]float{1, 2}) |
| 803 | // a.IsIncreasing([]string{"a", "b"}) |
| 804 | func (a *Assertions) IsIncreasing(object interface{}, msgAndArgs ...interface{}) bool { |
| 805 | if h, ok := a.t.(tHelper); ok { |
| 806 | h.Helper() |
| 807 | } |
| 808 | return IsIncreasing(a.t, object, msgAndArgs...) |
| 809 | } |
| 810 | |
| 811 | // IsIncreasingf asserts that the collection is increasing |
| 812 | // |
nothing calls this directly
no test coverage detected