func Gte(minExpectedValue interface{}) TestDeep
Gte
operator checks that data is greater or equal than
minExpectedValue. minExpectedValue can be any numeric or
time.Time
(or assignable) value. minExpectedValue must be the
same kind as the compared value if numeric, and the same type if
time.Time
(or assignable).
td.Cmp(t, 17, td.Gte(17))
before := time.Now()
td.Cmp(t, time.Now(), td.Gte(before))
TypeBehind
method returns the reflect.Type
of minExpectedValue.
See also Gte godoc.
t := &testing.T{}
got := 156
ok := td.Cmp(t, got, td.Gte(156), "checks %v is ≥ 156", got)
fmt.Println(ok)
ok = td.Cmp(t, got, td.Gte(155), "checks %v is ≥ 155", got)
fmt.Println(ok)
ok = td.Cmp(t, got, td.Gte(157), "checks %v is ≥ 157", got)
fmt.Println(ok)
// Output:
// true
// true
// false
t := &testing.T{}
got := "abc"
ok := td.Cmp(t, got, td.Gte("abc"), `checks "%v" is ≥ "abc"`, got)
fmt.Println(ok)
ok = td.Cmp(t, got, td.Gte("abb"), `checks "%v" is ≥ "abb"`, got)
fmt.Println(ok)
ok = td.Cmp(t, got, td.Gte("abd"), `checks "%v" is ≥ "abd"`, got)
fmt.Println(ok)
// Output:
// true
// true
// false
func CmpGte(t TestingT, got interface{}, minExpectedValue interface{}, args ...interface{}) bool
CmpGte is a shortcut for:
td.Cmp(t, got, td.Gte(minExpectedValue), args...)
See above for details.
Returns true if the test is OK, false if it fails.
args… are optional and allow to name the test. This name is
used in case of failure to qualify the test. If len(args) > 1
and
the first item of args is a string
and contains a ‘%’ rune
then
fmt.Fprintf
is used to compose the name, else args are passed to
fmt.Fprint
. Do not forget it is the name of the test, not the
reason of a potential failure.
See also CmpGte godoc.
t := &testing.T{}
got := 156
ok := td.CmpGte(t, got, 156, "checks %v is ≥ 156", got)
fmt.Println(ok)
ok = td.CmpGte(t, got, 155, "checks %v is ≥ 155", got)
fmt.Println(ok)
ok = td.CmpGte(t, got, 157, "checks %v is ≥ 157", got)
fmt.Println(ok)
// Output:
// true
// true
// false
t := &testing.T{}
got := "abc"
ok := td.CmpGte(t, got, "abc", `checks "%v" is ≥ "abc"`, got)
fmt.Println(ok)
ok = td.CmpGte(t, got, "abb", `checks "%v" is ≥ "abb"`, got)
fmt.Println(ok)
ok = td.CmpGte(t, got, "abd", `checks "%v" is ≥ "abd"`, got)
fmt.Println(ok)
// Output:
// true
// true
// false
func (t *T) Gte(got interface{}, minExpectedValue interface{}, args ...interface{}) bool
Gte
is a shortcut for:
t.Cmp(got, td.Gte(minExpectedValue), args...)
See above for details.
Returns true if the test is OK, false if it fails.
args… are optional and allow to name the test. This name is
used in case of failure to qualify the test. If len(args) > 1
and
the first item of args is a string
and contains a ‘%’ rune
then
fmt.Fprintf
is used to compose the name, else args are passed to
fmt.Fprint
. Do not forget it is the name of the test, not the
reason of a potential failure.
See also T.Gte godoc.
t := td.NewT(&testing.T{})
got := 156
ok := t.Gte(got, 156, "checks %v is ≥ 156", got)
fmt.Println(ok)
ok = t.Gte(got, 155, "checks %v is ≥ 155", got)
fmt.Println(ok)
ok = t.Gte(got, 157, "checks %v is ≥ 157", got)
fmt.Println(ok)
// Output:
// true
// true
// false
t := td.NewT(&testing.T{})
got := "abc"
ok := t.Gte(got, "abc", `checks "%v" is ≥ "abc"`, got)
fmt.Println(ok)
ok = t.Gte(got, "abb", `checks "%v" is ≥ "abb"`, got)
fmt.Println(ok)
ok = t.Gte(got, "abd", `checks "%v" is ≥ "abd"`, got)
fmt.Println(ok)
// Output:
// true
// true
// false