Searched refs:TestInfo (Results 1 - 12 of 12) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/
H A Dgtest.h174 class TestInfo;
373 friend class TestInfo;
564 friend class TestInfo;
633 // A TestInfo object stores the following information about a test:
641 // The constructor of TestInfo registers itself with the UnitTest
644 class GTEST_API_ TestInfo { class in namespace:testing
646 // Destructs a TestInfo object. This function is not virtual, so
647 // don't inherit from TestInfo.
648 ~TestInfo();
715 friend TestInfo* interna
[all...]
/xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/
H A Dgtest.h193 class TestInfo;
404 friend class TestInfo;
609 friend class TestInfo;
684 // A TestInfo object stores the following information about a test:
692 // The constructor of TestInfo registers itself with the UnitTest
695 class GTEST_API_ TestInfo { class in namespace:testing
697 // Destructs a TestInfo object. This function is not virtual, so
698 // don't inherit from TestInfo.
699 ~TestInfo();
771 friend TestInfo* interna
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gtest/src/
H A Dgtest-internal-inl.h638 // Adds a TestInfo to the unit test.
644 // test_info: the TestInfo object
647 TestInfo* test_info) {
680 // Sets the TestInfo object for the test that's currently running. If
683 void set_current_test_info(TestInfo* a_current_test_info) {
724 // result in each TestCase and TestInfo object.
734 TestInfo* current_test_info() { return current_test_info_; }
735 const TestInfo* current_test_info() const { return current_test_info_; }
866 // This points to the TestInfo for the currently running test. It
870 TestInfo* current_test_info
[all...]
H A Dgtest.cc2274 const TestInfo* const first_test_info = test_case->test_info_list()[0];
2279 const TestInfo* const this_test_info = impl->current_test_info();
2497 // class TestInfo
2499 // Constructs a TestInfo object. It assumes ownership of the test factory
2501 TestInfo::TestInfo(const std::string& a_test_case_name, function in class:testing::TestInfo
2520 // Destructs a TestInfo object.
2521 TestInfo::~TestInfo() { delete factory_; }
2525 // Creates a new TestInfo objec
[all...]
H A Dgtest-death-test.cc347 TestInfo* const info = GetUnitTestImpl()->current_test_info();
699 const TestInfo* const info = impl->current_test_info();
1122 const TestInfo* const info = impl->current_test_info();
/xsrc/external/mit/MesaLib/dist/src/gtest/src/
H A Dgtest-internal-inl.h666 // Adds a TestInfo to the unit test.
672 // test_info: the TestInfo object
675 TestInfo* test_info) {
705 // Sets the TestInfo object for the test that's currently running. If
708 void set_current_test_info(TestInfo* a_current_test_info) {
749 // result in each TestSuite and TestInfo object.
759 TestInfo* current_test_info() { return current_test_info_; }
760 const TestInfo* current_test_info() const { return current_test_info_; }
889 // This points to the TestInfo for the currently running test. It
893 TestInfo* current_test_info
[all...]
H A Dgtest.cc2305 const TestInfo* const first_test_info = test_suite->test_info_list()[0];
2310 const TestInfo* const this_test_info = impl->current_test_info();
2536 // class TestInfo
2538 // Constructs a TestInfo object. It assumes ownership of the test factory
2540 TestInfo::TestInfo(const std::string& a_test_suite_name, function in class:testing::TestInfo
2558 // Destructs a TestInfo object.
2559 TestInfo::~TestInfo() { delete factory_; }
2563 // Creates a new TestInfo objec
[all...]
H A Dgtest-death-test.cc370 TestInfo* const info = GetUnitTestImpl()->current_test_info();
729 const TestInfo* const info = impl->current_test_info();
976 const TestInfo* const info = impl->current_test_info();
1417 const TestInfo* const info = impl->current_test_info();
/xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/internal/
H A Dgtest-param-util.h526 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
549 linked_ptr<TestInfo> test_info = *test_it;
604 struct TestInfo { struct in class:testing::internal::ParameterizedTestCaseInfo
605 TestInfo(const char* a_test_case_base_name, function in struct:testing::internal::ParameterizedTestCaseInfo::TestInfo
616 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
H A Dgtest-internal.h89 class TestInfo; // Information about a test.
100 class TestInfoImpl; // Opaque implementation of TestInfo
511 // Creates a new TestInfo object and registers it with Google Test;
527 // The newly created TestInfo instance will assume
529 GTEST_API_ TestInfo* MakeAndRegisterTestInfo(
1220 static ::testing::TestInfo* const test_info_ GTEST_ATTRIBUTE_UNUSED_;\
1225 ::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_case_name, test_name)\
/xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/internal/
H A Dgtest-param-util.h511 tests_.push_back(std::shared_ptr<TestInfo>(
512 new TestInfo(test_suite_name, test_base_name, meta_factory)));
532 std::shared_ptr<TestInfo> test_info = *test_it;
588 struct TestInfo { struct in class:testing::internal::ParameterizedTestSuiteInfo
589 TestInfo(const char* a_test_suite_base_name, const char* a_test_base_name, function in struct:testing::internal::ParameterizedTestSuiteInfo::TestInfo
599 using TestInfoContainer = ::std::vector<std::shared_ptr<TestInfo> >;
H A Dgtest-internal.h92 class TestInfo; // Information about a test.
102 class TestInfoImpl; // Opaque implementation of TestInfo
540 // Creates a new TestInfo object and registers it with Google Test;
556 // The newly created TestInfo instance will assume
558 GTEST_API_ TestInfo* MakeAndRegisterTestInfo(
1362 static ::testing::TestInfo* const test_info_ GTEST_ATTRIBUTE_UNUSED_; \
1367 ::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_suite_name, \

Completed in 53 milliseconds