Home | History | Annotate | Download | only in test

Lines Matching refs:Matcher

153 using testing::Matcher;
238 // the Field matcher.
470 // Tests the linkage of the "_" matcher.
477 // Tests the linkage of the A matcher.
484 // Tests the linkage of the Eq and the "bare value" matcher.
505 // Tests the linkage of the NotNull matcher.
512 // Tests the linkage of the IsNull matcher.
519 // Tests the linkage of the Ref matcher.
527 // Tests the linkage of the TypedEq matcher.
548 // Tests the linkage of the ContainsRegex matcher.
555 // Tests the linkage of the MatchesRegex matcher.
580 // Tests the linkage of the ElementsAre matcher.
587 // Tests the linkage of the ElementsAreArray matcher.
595 // Tests the linkage of the ContainerEq matcher.
603 // Tests the linkage of the Field matcher.
607 Matcher<const FieldHelper&> m = Field(&FieldHelper::field_, Eq(0));
610 Matcher<const FieldHelper*> m2 = Field(&FieldHelper::field_, Eq(0));
614 // Tests the linkage of the Property matcher.
618 Matcher<const FieldHelper&> m = Property(&FieldHelper::field, Eq(0));
621 Matcher<const FieldHelper*> m2 = Property(&FieldHelper::field, Eq(0));
625 // Tests the linkage of the ResultOf matcher.
627 Matcher<char*> m = ResultOf(&InvokeHelper::StaticIntFromString, Eq(1));
631 // Tests the linkage of the ResultOf matcher.
635 Matcher<int*> m = Pointee(Eq(1));
639 // Tests the linkage of the Truly matcher.
641 Matcher<const char*> m = Truly(&InvokeHelper::StaticBoolFromString);
645 // Tests the linkage of the AllOf matcher.
647 Matcher<int> m = AllOf(_, Eq(1));
651 // Tests the linkage of the AnyOf matcher.
653 Matcher<int> m = AnyOf(_, Eq(1));
657 // Tests the linkage of the Not matcher.
659 Matcher<int> m = Not(_);
665 Matcher<const char*> m = MatcherCast<const char*>(_);