Lines Matching defs:Gt
4590 inline internal::Gt2Matcher Gt() { return internal::Gt2Matcher(); }
4801 // EXPECT_THAT(page_ids, Contains(Gt(2)));
4849 // - {1, 2, 3} matches IsSupersetOf(Gt(1), Gt(1)), as 2 matches (the first)
4850 // Gt(1) and 3 matches (the second) Gt(1).
4902 // - {1} matches IsSubsetOf({Gt(0), Lt(0)}), as 1 matches Gt(0).
4903 // - {1, -1} matches IsSubsetOf({Lt(0), Gt(0)}), as 1 matches Gt(0) and -1
4905 // - {1, 2} doesn't matches IsSubsetOf({Gt(0), Lt(0)}), even though 1 and 2 both
4906 // match Gt(0). The reason is that different matchers must be used for
4960 // EXPECT_THAT(page_ids, Each(Gt(0)));
4961 // EXPECT_THAT(page_ids, Not(Each(Gt(4))));