Home | History | Annotate | Download | only in test

Lines Matching defs:testing

52 namespace testing {
75 using testing::A;
76 using testing::AllArgs;
77 using testing::AllOf;
78 using testing::An;
79 using testing::AnyOf;
80 using testing::ByRef;
81 using testing::ContainsRegex;
82 using testing::DoubleEq;
83 using testing::EndsWith;
84 using testing::Eq;
85 using testing::ExplainMatchResult;
86 using testing::Field;
87 using testing::FloatEq;
88 using testing::Ge;
89 using testing::Gt;
90 using testing::HasSubstr;
91 using testing::IsNull;
92 using testing::Key;
93 using testing::Le;
94 using testing::Lt;
95 using testing::MakeMatcher;
96 using testing::MakePolymorphicMatcher;
97 using testing::MatchResultListener;
98 using testing::Matcher;
99 using testing::MatcherCast;
100 using testing::MatcherInterface;
101 using testing::Matches;
102 using testing::MatchesRegex;
103 using testing::NanSensitiveDoubleEq;
104 using testing::NanSensitiveFloatEq;
105 using testing::Ne;
106 using testing::Not;
107 using testing::NotNull;
108 using testing::Pair;
109 using testing::Pointee;
110 using testing::Pointwise;
111 using testing::PolymorphicMatcher;
112 using testing::Property;
113 using testing::Ref;
114 using testing::ResultOf;
115 using testing::StartsWith;
116 using testing::StrCaseEq;
117 using testing::StrCaseNe;
118 using testing::StrEq;
119 using testing::StrNe;
120 using testing::Truly;
121 using testing::TypedEq;
122 using testing::Value;
123 using testing::WhenSorted;
124 using testing::WhenSortedBy;
125 using testing::_;
126 using testing::internal::DummyMatchResultListener;
127 using testing::internal::ExplainMatchFailureTupleTo;
128 using testing::internal::FloatingEqMatcher;
129 using testing::internal::FormatMatcherDescription;
130 using testing::internal::IsReadableTypeName;
131 using testing::internal::JoinAsTuple;
132 using testing::internal::RE;
133 using testing::internal::StreamMatchResultListener;
134 using testing::internal::String;
135 using testing::internal::StringMatchResultListener;
136 using testing::internal::Strings;
137 using testing::internal::linked_ptr;
138 using testing::internal::scoped_ptr;
139 using testing::internal::string;
141 // For testing ExplainMatchResultTo().
472 // For testing casting matchers between compatible types.
484 // For testing casting matchers between compatible types.
890 // gmock-matchers.h: 'testing::Matcher<void *>::Matcher(void *)'
891 // gmock-matchers.h: 'testing::Matcher<void *>::Matcher(const testing::
893 // gmock-matchers.h: (point of instantiation: 'testing::
895 // gmock-matchers.h: (instantiating: 'testing::PolymorphicMatc
1917 // Helper to allow easy testing of AllOf matchers with num parameters.
2093 // Helper to allow easy testing of AnyOf matchers with num parameters.
2261 // testing the Truly(predicate) matcher.
2283 // For testing Truly().
2371 // effort on testing Value().
2474 EXPECT_FATAL_FAILURE(ASSERT_THAT(n, ::testing::Gt(10)),
2480 EXPECT_THAT(n, ::testing::AllOf(::testing::Le(7), ::testing::Ge(5))),
2494 EXPECT_FATAL_FAILURE(ASSERT_THAT(n, ::testing::Not(::testing::Ref(n))),
2498 EXPECT_FATAL_FAILURE(ASSERT_THAT(n, ::testing::Not(::testing::Ref(n))),
2537 class FloatingPointTest : public testing::Test {
2539 typedef typename testing::internal::FloatingPoint<RawType> Floating;
2585 testing::internal::FloatingEqMatcher<RawType> (*matcher_maker)(RawType)) {
2675 // Instantiate FloatingPointTest for testing floats.
2730 // Instantiate FloatingPointTest for testing doubles.
2913 // A user-defined struct for testing Field().
2928 // A derived struct for testing Field().
3113 // A user-defined class for testing Property().
3139 // A derived class for testing Property().
3501 // For testing using ExplainMatchResultTo() with polymorphic matchers.
3612 class ContainerEqTest : public testing::Test {};
3614 typedef testing::Types<
4078 // For testing Pointwise().
4197 } // namespace testing