Lines Matching full:describe

327   EXPECT_EQ("points to a value that is > 3", Describe(m));  in TEST()
478 // Tests that Field() can describe itself.
482 EXPECT_EQ("is an object whose given field is >= 0", Describe(m)); in TEST()
489 EXPECT_EQ("is an object whose field `field_name` is >= 0", Describe(m)); in TEST()
572 // Tests that Field() can describe itself when used to match a pointer.
576 EXPECT_EQ("is an object whose given field is >= 0", Describe(m)); in TEST()
583 EXPECT_EQ("is an object whose field `field_name` is >= 0", Describe(m)); in TEST()
768 // Tests that Property() can describe itself.
772 EXPECT_EQ("is an object whose given property is >= 0", Describe(m)); in TEST()
780 EXPECT_EQ("is an object whose property `fancy_name` is >= 0", Describe(m)); in TEST()
872 // Tests that Property() can describe itself when used to match a pointer.
876 EXPECT_EQ("is an object whose given property is >= 0", Describe(m)); in TEST()
884 EXPECT_EQ("is an object whose property `fancy_name` is >= 0", Describe(m)); in TEST()
939 // Tests that ResultOf() can describe itself.
946 Describe(matcher)); in TEST()
953 // Tests that ResultOf() can describe itself when provided a result description.
958 EXPECT_EQ("whose string conversion is equal to \"foo\"", Describe(matcher)); in TEST()
1195 EXPECT_EQ("has a size that is equal to 2", Describe(m)); in TEST()
1261 Describe(m)); in TEST()
1457 EXPECT_EQ("distance between begin() and end() is equal to 2", Describe(m)); in TEST()
1578 TEST(IsSupersetOfTest, Describe) { in TEST() argument
1585 Describe<IntVec>(IsSupersetOf(expected)), in TEST()
1705 TEST(IsSubsetOfTest, Describe) { in TEST() argument
1713 Describe<IntVec>(IsSubsetOf(expected)), in TEST()
2115 TEST_F(UnorderedElementsAreTest, Describe) { in TEST_F() argument
2116 EXPECT_THAT(Describe<IntVec>(UnorderedElementsAre()), Eq("is empty")); in TEST_F()
2117 EXPECT_THAT(Describe<IntVec>(UnorderedElementsAre(345)), in TEST_F()
2119 EXPECT_THAT(Describe<IntVec>(UnorderedElementsAre(111, 222, 333)), in TEST_F()
2172 EXPECT_EQ("only contains elements that is equal to 1", Describe(m)); in TEST()
2175 EXPECT_EQ("contains some element that isn't equal to 1", Describe(m2)); in TEST()
2272 Describe(m)); in TEST()
2396 Describe(m)); in TEST()
2588 EXPECT_EQ("is empty", Describe(m)); in TEST()
2593 EXPECT_EQ("has 1 element that is > 5", Describe(m)); in TEST()
2602 Describe(m)); in TEST()
3084 EXPECT_EQ("contains at least one element that is equal to 1", Describe(m)); in TEST()
3087 EXPECT_EQ("doesn't contain any element that is equal to 1", Describe(m2)); in TEST()