Home | History | Annotate | Download | only in src

Lines Matching refs:Passed

304 // Returns true iff the test case passed.
306 return test_case->should_run() && test_case->Passed();
2411 // Returns true iff test passed.
2414 return impl->should_run() && impl->result()->Passed();
2742 if (test_info.result()->Passed()) {
2791 if (!test_info.should_run() || test_info.result()->Passed()) {
2820 ColoredPrintf(COLOR_GREEN, "[ PASSED ] ");
2824 if (!unit_test.Passed()) {
3475 // Returns true iff the unit test passed (i.e. all test cases passed).
3476 bool UnitTest::Passed() const { return impl()->Passed(); }
4011 if (!Passed()) {
4031 // Returns 0 if all tests passed, or 1 other wise.