GreaterOrEqual asserts that the first element is greater than or equal to the second a.GreaterOrEqual(2, 1) a.GreaterOrEqual(2, 2) a.GreaterOrEqual("b", "a") a.GreaterOrEqual("b", "b")
(e1 interface{}, e2 interface{}, msgAndArgs ...interface{})
| 489 | // a.GreaterOrEqual("b", "a") |
| 490 | // a.GreaterOrEqual("b", "b") |
| 491 | func (a *Assertions) GreaterOrEqual(e1 interface{}, e2 interface{}, msgAndArgs ...interface{}) bool { |
| 492 | if h, ok := a.t.(tHelper); ok { |
| 493 | h.Helper() |
| 494 | } |
| 495 | return GreaterOrEqual(a.t, e1, e2, msgAndArgs...) |
| 496 | } |
| 497 | |
| 498 | // GreaterOrEqualf asserts that the first element is greater than or equal to the second |
| 499 | // |
nothing calls this directly
no test coverage detected