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{})
| 804 | // a.IsIncreasing([]float{1, 2}) |
| 805 | // a.IsIncreasing([]string{"a", "b"}) |
| 806 | func (a *Assertions) IsIncreasing(object interface{}, msgAndArgs ...interface{}) { |
| 807 | if h, ok := a.t.(tHelper); ok { |
| 808 | h.Helper() |
| 809 | } |
| 810 | IsIncreasing(a.t, object, msgAndArgs...) |
| 811 | } |
| 812 | |
| 813 | // IsIncreasingf asserts that the collection is increasing |
| 814 | // |
nothing calls this directly
no test coverage detected