Searched refs:Gt (Results 1 - 5 of 5) sorted by relevance

/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc66 using testing::Gt;
128 EXPECT_THAT(t, Not(Args<0, 2>(Gt())));
139 EXPECT_THAT(t, (Args<2, 0>(Gt())));
212 const Matcher<tuple<int, char> > m = Args<1, 0>(Gt());
294 Matcher<vector<int> > m = ElementsAre(Gt(5));
311 Matcher<const list<int>& > m = ElementsAre(Gt(5));
1105 EXPECT_THAT(42, TwoOf(Gt(0), Lt(50), Eq(10)));
1106 EXPECT_THAT(0, Not(TwoOf(Gt(-1), Lt(1), Eq(0))));
1117 EXPECT_THAT(some_list, Contains(Gt(2.5)));
1220 EXPECT_THAT(a, Contains(Gt(
[all...]
H A Dgmock-matchers_test.cc97 using testing::Gt;
946 // Tests that Gt(v) matches anything > v.
948 Matcher<double> m1 = Gt(0);
954 // Tests that Gt(v) describes itself properly.
956 Matcher<int> m = Gt(5);
1324 Matcher<int> is_positive = Gt(0);
1440 Matcher<int> is_positive = Gt(0);
1961 // Tests that Gt() matches a 2-tuple where the first field > the
1964 Matcher<const Tuple2&> m = Gt();
1970 // Tests that Gt() describe
[all...]
H A Dgmock_link_test.h70 // Gt, Lt, Ge, Le, Ne
144 using testing::Gt;
494 // Tests the linkage of the Lt, Gt, Le, Ge, and Ne matchers.
499 ON_CALL(mock, VoidFromFloat(Gt(1.0f))).WillByDefault(Return());
H A Dgmock-spec-builders_test.cc80 using testing::Gt;
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h124 // being matched. For example, the DescribeTo() method of the Gt(7)
3772 inline internal::GtMatcher<Rhs> Gt(Rhs x) { function in namespace:testing
4090 inline internal::Gt2Matcher Gt() { return internal::Gt2Matcher(); } function in namespace:testing
4271 // EXPECT_THAT(page_ids, Contains(Gt(2)));
4299 // EXPECT_THAT(page_ids, Each(Gt(0)));
4300 // EXPECT_THAT(page_ids, Not(Each(Gt(4))));

Completed in 57 milliseconds