Home | History | Annotate | Download | only in test

Lines Matching refs:AllArgs

74 using testing::AllArgs;
2348 EXPECT_THAT(make_tuple(1, 2L), AllArgs(Lt()));
2349 EXPECT_THAT(make_tuple(2L, 1), Not(AllArgs(Lt())));
2353 EXPECT_THAT(42, AllArgs(Gt(0)));
2354 EXPECT_THAT('a', Not(AllArgs(Eq('b'))));
2370 .With(AllArgs(Lt()))
2374 .With(AllArgs(Gt()))