Lines Matching defs:testing
44 namespace testing {
422 // Helper to allow easy testing of AllOf matchers with num parameters.
601 // Helper to allow easy testing of AnyOf matchers with num parameters.
670 Matcher<int> m = ::testing::AnyOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11);
818 // testing the Truly(predicate) matcher.
838 // For testing Truly().
928 // effort on testing Value().
1017 class FloatingPointTest : public testing::Test {
1019 typedef testing::internal::FloatingPoint<RawType> Floating;
1049 testing::internal::FloatingEqMatcher<RawType> (*matcher_maker)(RawType)) {
1130 void TestNearMatches(testing::internal::FloatingEqMatcher<RawType> (
1205 // Instantiate FloatingPointTest for testing floats.
1258 // Instantiate FloatingPointTest for testing floats with a user-specified
1316 // Instantiate FloatingPointTest for testing doubles.
1371 // Instantiate FloatingPointTest for testing floats with a user-specified
1452 EXPECT_THAT(0, testing::AllOf(_, _, _, _, _, _, _, _, _,
1453 testing::AllOf(_, _, _, _, _, _, _, _, _, _)));
1459 EXPECT_THAT(0, testing::AnyOf(_, _, _, _, _, _, _, _, _,
1460 testing::AnyOf(_, _, _, _, _, _, _, _, _, _)));
1465 // Verifies that the implementation of ::testing::AllOf and ::testing::AnyOf
1484 testing::AllOf(M(), M(), M(), M(), M(), M(), M(), M(), M(), M()));
1494 testing::AnyOf(M(), M(), M(), M(), M(), M(), M(), M(), M(), M()));
1513 } // namespace testing