↓ 9 callersFunctioncompareTwoValues(t TestingT, e1 interface{}, e2 interface{}, allowedComparesResults []compareResult, failMessage string, msgAn
assert/assertion_compare.go:458
↓ 5 callersFunctionIsDecreasingIsDecreasing asserts that the collection is decreasing assert.IsDecreasing(t, []int{2, 1, 0}) assert.IsDecreasing(t, []float{2, 1}) assert.IsDecre
assert/assertion_order.go:70
↓ 5 callersFunctionIsIncreasingIsIncreasing asserts that the collection is increasing assert.IsIncreasing(t, []int{1, 2, 3}) assert.IsIncreasing(t, []float{1, 2}) assert.IsIncre
assert/assertion_order.go:52
↓ 5 callersFunctionIsNonDecreasingIsNonDecreasing asserts that the collection is not decreasing assert.IsNonDecreasing(t, []int{1, 1, 2}) assert.IsNonDecreasing(t, []float{1, 2}) a
assert/assertion_order.go:79
↓ 5 callersFunctionIsNonIncreasingIsNonIncreasing asserts that the collection is not increasing assert.IsNonIncreasing(t, []int{2, 1, 1}) assert.IsNonIncreasing(t, []float{2, 1}) a
assert/assertion_order.go:61
↓ 5 callersFunctionLessLess asserts that the first element is less than the second assert.Less(t, 1, 2) assert.Less(t, float64(1), float64(2)) assert.Less(t, "a", "b")
assert/assertion_compare.go:414