HomeSort by relevance Sort by last modified time
    Searched refs:Passed (Results 1 - 23 of 23) sorted by null

  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-death-test-internal.h 64 // exit code: The integer code passed to exit(3), _exit(2), or
107 // Returns true if the death test passed; that is, the test process
112 // than a function pointer or functor, or else Wait and Passed could
114 virtual bool Passed(bool exit_status_ok) = 0;
162 if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \
  /external/protobuf/gtest/test/
gtest-unittest-api_test.cc 243 EXPECT_TRUE(unit_test->Passed());
256 EXPECT_TRUE(test_cases[0]->Passed());
276 EXPECT_TRUE(test_cases[2]->Passed());
291 EXPECT_TRUE(tests[1]->result()->Passed());
299 EXPECT_TRUE(tests[2]->result()->Passed());
307 EXPECT_TRUE(tests[3]->result()->Passed());
325 EXPECT_TRUE(tests[0]->result()->Passed());
gtest-test-part_test.cc 80 // Tests TestPartResult::passed().
81 TEST_F(TestPartResultTest, Passed) {
82 EXPECT_TRUE(r1_.passed());
83 EXPECT_FALSE(r2_.passed());
84 EXPECT_FALSE(r3_.passed());
gtest-death-test_test.cc 727 int status, bool passed);
749 // The value a MockDeathTest will return from its Passed method.
756 // The arguments to the calls to Passed since the last call to
775 TestRole role, int status, bool passed) :
776 parent_(parent), role_(role), status_(status), passed_(passed) {
789 virtual bool Passed(bool exit_status_ok) {
820 int status, bool passed) {
824 passed_ = passed;
900 // and that the Passed method returns false when the (simulated)
915 // Tests that the Passed method was given the argument "true" whe
    [all...]
gtest_unittest.cc     [all...]
  /external/gtest/include/gtest/internal/
gtest-death-test-internal.h 69 // exit code: The integer code passed to exit(3), _exit(2), or
112 // Returns true if the death test passed; that is, the test process
117 // than a function pointer or functor, or else Wait and Passed could
119 virtual bool Passed(bool exit_status_ok) = 0;
172 if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
lexical-048.js 22 var expect = "Passed";
lexical-049.js 21 var expect = "Passed";
  /external/protobuf/gtest/include/gtest/internal/
gtest-death-test-internal.h 65 // exit code: The integer code passed to exit(3), _exit(2), or
108 // Returns true if the death test passed; that is, the test process
113 // than a function pointer or functor, or else Wait and Passed could
115 virtual bool Passed(bool exit_status_ok) = 0;
168 if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \
  /external/protobuf/gtest/samples/
sample9_unittest.cc 59 fprintf(stdout, "TEST %s\n", unit_test.Passed() ? "PASSED" : "FAILED");
  /external/gtest/test/
gtest-test-part_test.cc 55 // Tests TestPartResult::passed().
56 TEST_F(TestPartResultTest, Passed) {
57 EXPECT_TRUE(r1_.passed());
58 EXPECT_FALSE(r2_.passed());
59 EXPECT_FALSE(r3_.passed());
gtest-death-test_test.cc 726 int status, bool passed);
748 // The value a MockDeathTest will return from its Passed method.
755 // The arguments to the calls to Passed since the last call to
774 TestRole role, int status, bool passed) :
775 parent_(parent), role_(role), status_(status), passed_(passed) {
788 virtual bool Passed(bool exit_status_ok) {
819 int status, bool passed) {
823 passed_ = passed;
899 // and that the Passed method returns false when the (simulated)
914 // Tests that the Passed method was given the argument "true" whe
    [all...]
gtest_unittest.cc     [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/src/
gtest-internal-inl.h 480 // Returns true iff the test passed (i.e. no test part failed).
481 bool Passed() const { return !Failed(); }
658 // Returns true iff the test case passed.
659 bool Passed() const { return !Failed(); }
689 // Returns true iff test passed.
692 return impl->should_run() && impl->result()->Passed();
887 // Returns true iff the unit test passed (i.e. all test cases passed).
888 bool Passed() const { return !Failed(); }
    [all...]
  /external/gtest/src/
gtest-internal-inl.h 542 // Returns true iff the test passed (i.e. no test part failed).
543 bool Passed() const { return !Failed(); }
733 // Returns true iff the test case passed.
734 bool Passed() const { return !Failed(); }
764 // Returns true iff test passed.
767 return impl->should_run() && impl->result()->Passed();
    [all...]
gtest-death-test.cc 340 virtual bool Passed(bool status_ok);
366 // TODO(vladl@google.com): Move definition of DeathTestImpl::Passed() here.
805 bool DeathTestImpl::Passed(bool status_ok) {
845 "DeathTest::Passed somehow called before conclusion of test");
    [all...]
gtest.cc 276 // Returns true iff the test case passed.
278 return test_case->should_run() && test_case->Passed();
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 247 virtual bool Passed(bool status_ok);
380 bool ForkingDeathTest::Passed(bool status_ok) {
419 "DeathTest::Passed somehow called before conclusion of test");
gtest.cc 216 // Returns true iff the test case passed.
218 return test_case->should_run() && test_case->Passed();
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h 425 // Returns true iff the test passed (i.e. no test part failed).
426 bool Passed() const { return !Failed(); }
653 // Returns true iff the test case passed.
654 bool Passed() const { return !Failed(); }
700 // Returns true iff test passed.
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 324 virtual bool Passed(bool status_ok);
447 bool DeathTestImpl::Passed(bool status_ok) {
484 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
gtest.cc 304 // Returns true iff the test case passed.
306 return test_case->should_run() && test_case->Passed();
    [all...]
gtest-internal-inl.h 793 // Returns true iff the unit test passed (i.e. all test cases passed).
794 bool Passed() const { return !Failed(); }
    [all...]

Completed in 148 milliseconds