Lines Matching defs:result
484 // Tests that Field() can explain the match result.
578 // Tests that Field() can explain the result of matching a pointer.
775 // Tests that Property() can explain the match result.
879 // Tests that Property() can explain the result of matching a pointer.
943 // Tests that ResultOf() can describe itself when provided a result description.
953 // Tests that ResultOf() can explain the match result.
2535 AssertionResult result = RunPredicateFormatter(kInitialSuccess);
2536 EXPECT_TRUE(result); // Implicit cast to bool.
2538 EXPECT_EQ(expect, result.message());
2542 AssertionResult result = RunPredicateFormatter(kAlwaysFail);
2543 EXPECT_FALSE(result); // Implicit cast to bool.
2548 EXPECT_EQ(expect, result.message());
2552 AssertionResult result = RunPredicateFormatter(kFlaky);
2553 EXPECT_FALSE(result); // Implicit cast to bool.
2560 EXPECT_EQ(expect, result.message());