Home | History | Annotate | Download | only in src

Lines Matching defs:Passed

312 // Returns true iff the test case passed.
314 return test_case->should_run() && test_case->Passed();
2435 // Returns true iff test passed.
2438 return impl->should_run() && impl->result()->Passed();
2771 if (test_info.result()->Passed()) {
2820 if (!test_info.should_run() || test_info.result()->Passed()) {
2849 ColoredPrintf(COLOR_GREEN, "[ PASSED ] ");
2853 if (!unit_test.Passed()) {
3500 // Returns true iff the unit test passed (i.e. all test cases passed).
3501 bool UnitTest::Passed() const { return impl()->Passed(); }
4041 if (!Passed()) {
4061 // Returns 0 if all tests passed, or 1 other wise.