Home
last modified time | relevance | path

Searched refs:TupleMatches (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-internal-utils_test.cc295 EXPECT_TRUE(TupleMatches(matchers, values)); in TEST()
302 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST()
303 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
311 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST()
312 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
313 EXPECT_FALSE(TupleMatches(matchers, values3)); in TEST()
314 EXPECT_FALSE(TupleMatches(matchers, values4)); in TEST()
326 EXPECT_TRUE(TupleMatches(matchers, values1)); in TEST()
327 EXPECT_FALSE(TupleMatches(matchers, values2)); in TEST()
328 EXPECT_FALSE(TupleMatches(matchers, values3)); in TEST()
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h324 return TupleMatches(matchers_, args) && extra_matcher_.Matches(args); in Matches()
1119 return TupleMatches(matchers_, args) && extra_matcher_.Matches(args); in Matches()
1146 if (!TupleMatches(matchers_, args)) { in ExplainMatchResultTo()
H A Dgmock-matchers.h693 bool TupleMatches(const MatcherTuple& matcher_tuple, in TupleMatches() function