Home | History | Annotate | Download | only in test

Lines Matching refs:Truly

118 using testing::Truly;
493 Matcher<IntValue> m3 = Truly(IsPositiveIntValue);
2213 // testing the Truly(predicate) matcher.
2216 // type of this function is not bool. It's OK as Truly() accepts any
2235 // For testing Truly().
2244 // Tests that Truly(predicate) matches what satisfies the given
2247 Matcher<double> m = Truly(IsPositive);
2252 // Tests that Truly(predicate_functor) works too.
2254 Matcher<int> m = Truly(IsGreaterThan(5));
2259 // Tests that Truly(predicate) can describe itself properly.
2261 Matcher<double> m = Truly(IsPositive);
2266 // Tests that Truly(predicate) works when the matcher takes its
2269 Matcher<const int&> m = Truly(ReferencesFooAndIsZero);
2857 Matcher<AStruct> m = Field(&AStruct::z, Truly(ValueIsPositive));
2859 m = Field(&AStruct::z, Not(Truly(ValueIsPositive)));