Home | History | Annotate | Download | only in gtest

Lines Matching refs:Passed

370 passed.  The C++11 standard specifies a
2698 // for objects passed through ellipsis (...), failing for uncopyable
2699 // objects. We define this to ensure that only POD is passed through
8068 // represenation of expression as it was passed into the EXPECT_TRUE.
8225 // exit code: The integer code passed to exit(3), _exit(2), or
8272 // Returns true if the death test passed; that is, the test process
8277 // than a function pointer or functor, or else Wait and Passed could
8279 virtual bool Passed(bool exit_status_ok) = 0;
8357 if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \
10385 // ownership of test factory pointer, same factory object cannot be passed
15835 // passed in and keeps them to generate tests in RUN_ALL_TESTS().
17134 // Returns true iff the test part passed.
17135 bool passed() const { return type_ == kSuccess; }
17929 // Returns true iff the test passed (i.e. no test part failed).
17930 bool Passed() const { return !Failed(); }
18216 // Returns true iff the test case passed.
18217 bool Passed() const { return !Failed(); }
18275 // Returns true iff test passed.
18277 return test_info->should_run() && test_info->result()->Passed();
18615 // Returns true iff the unit test passed (i.e. all test cases passed).
18616 bool Passed() const;