Searched defs:TestInfo (Results 1 - 14 of 14) sorted by relevance

/prebuilts/ndk/current/sources/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h469 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
490 linked_ptr<TestInfo> test_info = *test_it;
525 struct TestInfo { struct in class:testing::internal::ParameterizedTestCaseInfo
526 TestInfo(const char* a_test_case_base_name, function in struct:testing::internal::ParameterizedTestCaseInfo::TestInfo
537 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
/prebuilts/ndk/current/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-param-util.h469 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
490 linked_ptr<TestInfo> test_info = *test_it;
525 struct TestInfo { struct in class:testing::internal::ParameterizedTestCaseInfo
526 TestInfo(const char* a_test_case_base_name, function in struct:testing::internal::ParameterizedTestCaseInfo::TestInfo
537 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
/prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h469 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
490 linked_ptr<TestInfo> test_info = *test_it;
525 struct TestInfo { struct in class:testing::internal::ParameterizedTestCaseInfo
526 TestInfo(const char* a_test_case_base_name, function in struct:testing::internal::ParameterizedTestCaseInfo::TestInfo
537 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
/prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-param-util.h469 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
490 linked_ptr<TestInfo> test_info = *test_it;
525 struct TestInfo { struct in class:testing::internal::ParameterizedTestCaseInfo
526 TestInfo(const char* a_test_case_base_name, function in struct:testing::internal::ParameterizedTestCaseInfo::TestInfo
537 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
/prebuilts/ndk/current/sources/third_party/googletest/googletest/include/gtest/
H A Dgtest.h174 class TestInfo;
349 friend class TestInfo;
541 friend class TestInfo;
610 // A TestInfo object stores the following information about a test:
618 // The constructor of TestInfo registers itself with the UnitTest
621 class GTEST_API_ TestInfo { class in namespace:testing
623 // Destructs a TestInfo object. This function is not virtual, so
624 // don't inherit from TestInfo.
625 ~TestInfo();
678 friend TestInfo* interna
[all...]
/prebuilts/ndk/current/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/
H A Dgtest.h174 class TestInfo;
349 friend class TestInfo;
541 friend class TestInfo;
610 // A TestInfo object stores the following information about a test:
618 // The constructor of TestInfo registers itself with the UnitTest
621 class GTEST_API_ TestInfo { class in namespace:testing
623 // Destructs a TestInfo object. This function is not virtual, so
624 // don't inherit from TestInfo.
625 ~TestInfo();
686 friend TestInfo* interna
[all...]
/prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/
H A Dgtest.h174 class TestInfo;
349 friend class TestInfo;
541 friend class TestInfo;
610 // A TestInfo object stores the following information about a test:
618 // The constructor of TestInfo registers itself with the UnitTest
621 class GTEST_API_ TestInfo { class in namespace:testing
623 // Destructs a TestInfo object. This function is not virtual, so
624 // don't inherit from TestInfo.
625 ~TestInfo();
678 friend TestInfo* interna
[all...]
/prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/
H A Dgtest.h174 class TestInfo;
349 friend class TestInfo;
541 friend class TestInfo;
610 // A TestInfo object stores the following information about a test:
618 // The constructor of TestInfo registers itself with the UnitTest
621 class GTEST_API_ TestInfo { class in namespace:testing
623 // Destructs a TestInfo object. This function is not virtual, so
624 // don't inherit from TestInfo.
625 ~TestInfo();
686 friend TestInfo* interna
[all...]
/prebuilts/ndk/current/sources/third_party/googletest/googletest/src/
H A Dgtest.cc1935 const TestInfo* const first_test_info = test_case->test_info_list()[0];
1940 const TestInfo* const this_test_info = impl->current_test_info();
2158 // class TestInfo
2160 // Constructs a TestInfo object. It assumes ownership of the test factory
2162 TestInfo::TestInfo(const std::string& a_test_case_name, function in class:testing::TestInfo
2179 // Destructs a TestInfo object.
2180 TestInfo::~TestInfo() { delete factory_; }
2184 // Creates a new TestInfo objec
[all...]
/prebuilts/ndk/r16/sources/third_party/googletest/googletest/src/
H A Dgtest.cc1935 const TestInfo* const first_test_info = test_case->test_info_list()[0];
1940 const TestInfo* const this_test_info = impl->current_test_info();
2158 // class TestInfo
2160 // Constructs a TestInfo object. It assumes ownership of the test factory
2162 TestInfo::TestInfo(const std::string& a_test_case_name, function in class:testing::TestInfo
2179 // Destructs a TestInfo object.
2180 TestInfo::~TestInfo() { delete factory_; }
2184 // Creates a new TestInfo objec
[all...]
/prebuilts/ndk/current/sources/third_party/vulkan/src/tests/gtest-1.7.0/fused-src/gtest/
H A Dgtest-all.cc1048 // Adds a TestInfo to the unit test.
1054 // test_info: the TestInfo object
1057 TestInfo* test_info) {
1090 // Sets the TestInfo object for the test that's currently running. If
1093 void set_current_test_info(TestInfo* a_current_test_info) {
1134 // result in each TestCase and TestInfo object.
1144 TestInfo* current_test_info() { return current_test_info_; }
1145 const TestInfo* current_test_info() const { return current_test_info_; }
1276 // This points to the TestInfo for the currently running test. It
1280 TestInfo* current_test_info
3661 TestInfo::TestInfo(const std::string& a_test_case_name, function in class:testing::TestInfo
[all...]
H A Dgtest.h7047 class TestInfo; // Information about a test.
7058 class TestInfoImpl; // Opaque implementation of TestInfo
7435 // Creates a new TestInfo object and registers it with Google Test;
7450 // The newly created TestInfo instance will assume
7452 GTEST_API_ TestInfo* MakeAndRegisterTestInfo(
8103 static ::testing::TestInfo* const test_info_ GTEST_ATTRIBUTE_UNUSED_;\
8108 ::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_case_name, test_name)\
10469 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
10490 linked_ptr<TestInfo> test_inf
10525 struct TestInfo { struct in class:testing::internal::ParameterizedTestCaseInfo
10526 TestInfo(const char* a_test_case_base_name, function in struct:testing::internal::ParameterizedTestCaseInfo::TestInfo
18035 class GTEST_API_ TestInfo { class in namespace:testing
[all...]
/prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/fused-src/gtest/
H A Dgtest-all.cc1048 // Adds a TestInfo to the unit test.
1054 // test_info: the TestInfo object
1057 TestInfo* test_info) {
1090 // Sets the TestInfo object for the test that's currently running. If
1093 void set_current_test_info(TestInfo* a_current_test_info) {
1134 // result in each TestCase and TestInfo object.
1144 TestInfo* current_test_info() { return current_test_info_; }
1145 const TestInfo* current_test_info() const { return current_test_info_; }
1276 // This points to the TestInfo for the currently running test. It
1280 TestInfo* current_test_info
3661 TestInfo::TestInfo(const std::string& a_test_case_name, function in class:testing::TestInfo
[all...]
H A Dgtest.h7047 class TestInfo; // Information about a test.
7058 class TestInfoImpl; // Opaque implementation of TestInfo
7435 // Creates a new TestInfo object and registers it with Google Test;
7450 // The newly created TestInfo instance will assume
7452 GTEST_API_ TestInfo* MakeAndRegisterTestInfo(
8103 static ::testing::TestInfo* const test_info_ GTEST_ATTRIBUTE_UNUSED_;\
8108 ::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_case_name, test_name)\
10469 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
10490 linked_ptr<TestInfo> test_inf
10525 struct TestInfo { struct in class:testing::internal::ParameterizedTestCaseInfo
10526 TestInfo(const char* a_test_case_base_name, function in struct:testing::internal::ParameterizedTestCaseInfo::TestInfo
18035 class GTEST_API_ TestInfo { class in namespace:testing
[all...]

Completed in 457 milliseconds