Lines Matching refs:DescribeNegation
103 std::string DescribeNegation(const Matcher<T>& m) { in DescribeNegation() function
168 EXPECT_EQ("isn't empty", DescribeNegation(m)); in TEST()
174 "element #0 isn't > 5", DescribeNegation(m)); in TEST()
181 "element #1 isn't equal to \"two\"", DescribeNegation(m)); in TEST()
593 EXPECT_EQ("not (is even)", DescribeNegation(m)); in TEST()
634 EXPECT_EQ("is odd", DescribeNegation(m1)); in TEST()
638 EXPECT_EQ("doesn't equal the sum of 5 and 9", DescribeNegation(m2)); in TEST()
706 EXPECT_EQ("not (is greater than 32 and 5)", DescribeNegation(m)); in TEST()
718 EXPECT_EQ("not (is greater than 32 and 5)", DescribeNegation(m)); in TEST()
809 EXPECT_EQ("not (is not in closed range (10, 20))", DescribeNegation(m)); in TEST()
1221 EXPECT_EQ("()", DescribeNegation(m0)); in TEST()
1222 EXPECT_EQ("(isn't equal to 1)", DescribeNegation(m1)); in TEST()
1223 EXPECT_EQ("(isn't equal to 2) and (isn't equal to 3)", DescribeNegation(m2)); in TEST()