// ExpectGt(x, y) is equivalent to ExpectThat(x, oglematchers.GreaterThan(y)). func ExpectGt(x, y interface{}, errorParts ...interface{}) { expectThat(x, oglematchers.GreaterThan(y), 1, errorParts) }
// AssertGt(x, y) is equivalent to AssertThat(x, oglematchers.GreaterThan(y)). func AssertGt(x, y interface{}, errorParts ...interface{}) { assertThat(x, oglematchers.GreaterThan(y), 1, errorParts) }