IsNonIncreasingf asserts that the collection is not increasing a.IsNonIncreasingf([]int{2, 1, 1}, "error message %s", "formatted") a.IsNonIncreasingf([]float{2, 1}, "error message %s", "formatted") a.IsNonIncreasingf([]string{"b", "a"}, "error message %s", "formatted")
(object interface{}, msg string, args ...interface{})
| 862 | // a.IsNonIncreasingf([]float{2, 1}, "error message %s", "formatted") |
| 863 | // a.IsNonIncreasingf([]string{"b", "a"}, "error message %s", "formatted") |
| 864 | func (a *Assertions) IsNonIncreasingf(object interface{}, msg string, args ...interface{}) bool { |
| 865 | if h, ok := a.t.(tHelper); ok { |
| 866 | h.Helper() |
| 867 | } |
| 868 | return IsNonIncreasingf(a.t, object, msg, args...) |
| 869 | } |
| 870 | |
| 871 | // IsType asserts that the specified objects are of the same type. |
| 872 | func (a *Assertions) IsType(expectedType interface{}, object interface{}, msgAndArgs ...interface{}) bool { |
nothing calls this directly
no test coverage detected