コード例 #1
0
ファイル: expect_aliases.go プロジェクト: pgpst/pgpst
// ExpectGe(x, y) is equivalent to
// ExpectThat(x, oglematchers.GreaterOrEqual(y)).
func ExpectGe(x, y interface{}, errorParts ...interface{}) {
	expectThat(x, oglematchers.GreaterOrEqual(y), 1, errorParts)
}
コード例 #2
0
ファイル: assert_aliases.go プロジェクト: pgpst/pgpst
// AssertGe(x, y) is equivalent to
// AssertThat(x, oglematchers.GreaterOrEqual(y)).
func AssertGe(x, y interface{}, errorParts ...interface{}) {
	assertThat(x, oglematchers.GreaterOrEqual(y), 1, errorParts)
}