Home | History | Annotate | Download | only in test

Lines Matching full:notnull

107 using testing::NotNull;
937 // Tests that NotNull() matches any non-NULL pointer of any type.
939 Matcher<int*> m1 = NotNull();
945 Matcher<const char*> m2 = NotNull();
952 const Matcher<linked_ptr<int> > m = NotNull();
961 const Matcher<const linked_ptr<double>&> m = NotNull();
970 const Matcher<const scoped_ptr<double>&> m = NotNull();
978 // Tests that NotNull() describes itself properly.
980 Matcher<int*> m = NotNull();