Searched refs:Lt (Results 1 - 6 of 6) sorted by relevance

/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc68 using testing::Lt;
126 EXPECT_THAT(t, (Args<0, 1>(Lt())));
127 EXPECT_THAT(t, (Args<1, 2>(Lt())));
140 EXPECT_THAT(t, Not(Args<2, 1>(Lt())));
165 EXPECT_THAT(t, (Args<0, 1, 3>(Args<0, 2>(Lt()))));
170 const Matcher<Tuple3> m = Args<1, 2>(Lt());
177 const Matcher<const Tuple3&> m = Args<0, 1>(Lt());
197 const Matcher<tuple<int, bool, char> > m = Args<2, 0>(Lt());
205 Args<0, 2, 3>(Args<2, 0>(Lt()));
1105 EXPECT_THAT(42, TwoOf(Gt(0), Lt(5
[all...]
H A Dgmock-generated-function-mockers_test.cc68 using testing::Lt;
192 EXPECT_CALL(mock_foo_, VoidReturning(Lt(100)));
227 Lt(100), 5U, NULL, "hi"))
254 EXPECT_CALL(mock_foo_, TakesConst(Lt(10)))
329 Lt(100), 5U, NULL, "hi"))
H A Dgmock-matchers_test.cc103 using testing::Lt;
974 // Tests that Lt(v) matches anything < v.
976 Matcher<const string&> m1 = Lt("Hello");
982 // Tests that Lt(v) describes itself properly.
984 Matcher<int> m = Lt(5);
1320 EXPECT_THAT(p, Not(Key(Lt(25))));
1325 Matcher<int> is_negative = Lt(0);
1428 EXPECT_THAT(p, Not(Pair(Lt(25), "foo")));
1436 EXPECT_THAT(p, Not(Pair(Lt(13), HasSubstr("a"))));
1441 Matcher<int> is_negative = Lt(
[all...]
H A Dgmock_link_test.h70 // Gt, Lt, Ge, Le, Ne
152 using testing::Lt;
494 // Tests the linkage of the Lt, Gt, Le, Ge, and Ne matchers.
498 ON_CALL(mock, VoidFromFloat(Lt(1.0f))).WillByDefault(Return());
H A Dgmock-spec-builders_test.cc86 using testing::Lt;
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h3759 // can always write Matcher<T>(Lt(5)) to be explicit about the type,
3784 inline internal::LtMatcher<Rhs> Lt(Rhs x) { function in namespace:testing
4098 inline internal::Lt2Matcher Lt() { return internal::Lt2Matcher(); } function in namespace:testing
4302 // EXPECT_THAT(page_ids, Not(Each(Lt(2))));

Completed in 54 milliseconds