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

123

/external/chromium/base/test/
H A Dtest_suite.h18 class TestInfo;
26 typedef bool (*TestMatch)(const testing::TestInfo&);
32 static bool IsMarkedFlaky(const testing::TestInfo& test);
35 static bool IsMarkedFailing(const testing::TestInfo& test);
40 static bool IsMarkedMaybe(const testing::TestInfo& test);
43 static bool ShouldIgnoreFailure(const testing::TestInfo& test);
46 static bool NonIgnoredFailures(const testing::TestInfo& test);
H A Dtest_suite.cc38 virtual void OnTestStart(const testing::TestInfo& test_info) {
70 bool TestSuite::IsMarkedFlaky(const testing::TestInfo& test) {
75 bool TestSuite::IsMarkedFailing(const testing::TestInfo& test) {
80 bool TestSuite::IsMarkedMaybe(const testing::TestInfo& test) {
85 bool TestSuite::ShouldIgnoreFailure(const testing::TestInfo& test) {
92 bool TestSuite::NonIgnoredFailures(const testing::TestInfo& test) {
/external/chromium/chrome/browser/diagnostics/
H A Ddiagnostics_model.h47 class TestInfo { class in class:DiagnosticsModel
49 virtual ~TestInfo() {}
70 virtual TestInfo& GetTest(size_t id) = 0;
H A Ddiagnostics_test.h16 // It also Implements the TestInfo interface providing the storage
24 class DiagnosticTest : public DiagnosticsModel::TestInfo {
/external/webkit/Source/WebKit/gtk/tests/
H A Dtesthittestresult.c30 } TestInfo; typedef in typeref:struct:__anon12088
36 TestInfo* info;
39 TestInfo*
42 TestInfo* info;
44 info = g_slice_new(TestInfo);
52 test_info_destroy(TestInfo* info)
55 g_slice_free(TestInfo, info);
63 fixture->info = (TestInfo*)data;
79 TestInfo* info = (TestInfo*)dat
[all...]
H A Dtestcopyandpaste.c33 } TestInfo; typedef in typeref:struct:__anon12083
39 TestInfo* info;
42 TestInfo*
45 TestInfo* info;
46 info = g_slice_new0(TestInfo);
54 test_info_destroy(TestInfo* info)
58 g_slice_free(TestInfo, info);
123 fixture->info = (TestInfo*)data;
200 fixture->info = (TestInfo*)data;
H A Dtestkeyevents.c35 } TestInfo; typedef in typeref:struct:__anon12090
41 TestInfo* info;
44 TestInfo*
47 TestInfo* info;
49 info = g_slice_new(TestInfo);
58 test_info_destroy(TestInfo* info)
62 g_slice_free(TestInfo, info);
130 fixture->info = (TestInfo*)data;
/external/chromium/testing/gtest/samples/
H A Dsample9_unittest.cc44 using ::testing::TestInfo;
64 virtual void OnTestStart(const TestInfo& test_info) {
84 virtual void OnTestEnd(const TestInfo& test_info) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
H A Dsample10_unittest.cc44 using ::testing::TestInfo;
81 virtual void OnTestStart(const TestInfo& /* test_info */) {
86 virtual void OnTestEnd(const TestInfo& /* test_info */) {
/external/protobuf/gtest/samples/
H A Dsample9_unittest.cc44 using ::testing::TestInfo;
64 virtual void OnTestStart(const TestInfo& test_info) {
84 virtual void OnTestEnd(const TestInfo& test_info) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
H A Dsample10_unittest.cc44 using ::testing::TestInfo;
81 virtual void OnTestStart(const TestInfo& test_info) {
86 virtual void OnTestEnd(const TestInfo& test_info) {
/external/chromium/testing/gtest/test/
H A Dgtest_shuffle_test_.cc43 using ::testing::TestInfo;
87 virtual void OnTestStart(const TestInfo& test_info) {
H A Dgtest-unittest-api_test.cc86 static TestInfo const** const GetSortedTests(const TestCase* test_case) {
87 TestInfo const** const tests =
88 new const TestInfo*[test_case->total_test_count()];
94 LessByName<TestInfo>());
158 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case);
221 const TestInfo* const test_info = test_case->GetTestInfo(0);
280 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case);
H A Dgtest-listener_test.cc45 using ::testing::TestInfo;
85 virtual void OnTestStart(const TestInfo& /*test_info*/) {
93 virtual void OnTestEnd(const TestInfo& /*test_info*/) {
/external/protobuf/gtest/test/
H A Dgtest_shuffle_test_.cc43 using ::testing::TestInfo;
87 virtual void OnTestStart(const TestInfo& test_info) {
H A Dgtest-unittest-api_test.cc86 static TestInfo const** const GetSortedTests(const TestCase* test_case) {
87 TestInfo const** const tests =
88 new const TestInfo*[test_case->total_test_count()];
94 LessByName<TestInfo>());
157 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case);
221 const TestInfo* const test_info = test_case->GetTestInfo(0);
281 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case);
H A Dgtest-listener_test.cc53 using ::testing::TestInfo;
94 virtual void OnTestStart(const TestInfo& /*test_info*/) {
102 virtual void OnTestEnd(const TestInfo& /*test_info*/) {
/external/chromium/sdch/open-vcdiff/src/gtest/src/
H A Dgtest-internal-inl.h538 TestInfoImpl(TestInfo* parent, const char* test_case_name,
572 // Calls the given TestInfo object's Run() method.
573 static void RunTest(TestInfo * test_info) {
580 // Clears the test result in the given TestInfo object.
581 static void ClearTestResult(TestInfo * test_info) {
587 TestInfo* const parent_; // The owner of this object
636 internal::List<TestInfo*>& test_info_list() { return *test_info_list_; }
639 const internal::List<TestInfo *> & test_info_list() const {
667 // Adds a TestInfo to this test case. Will delete the TestInfo upo
[all...]
/external/gtest/src/
H A Dgtest-internal-inl.h600 TestInfoImpl(TestInfo* parent, const char* test_case_name,
641 // Calls the given TestInfo object's Run() method.
642 static void RunTest(TestInfo * test_info) {
649 // Clears the test result in the given TestInfo object.
650 static void ClearTestResult(TestInfo * test_info) {
656 TestInfo* const parent_; // The owner of this object
711 internal::List<TestInfo*>& test_info_list() { return *test_info_list_; }
714 const internal::List<TestInfo *> & test_info_list() const {
742 // Adds a TestInfo to this test case. Will delete the TestInfo upo
[all...]
H A Dgtest.cc499 virtual void OnTestStart(const TestInfo*) {} argument
502 virtual void OnTestEnd(const TestInfo*) {} argument
2087 // class TestInfo
2089 // Constructs a TestInfo object. It assumes ownership of the test factory
2091 TestInfo::TestInfo(const char* test_case_name, function in class:testing::TestInfo
2102 // Destructs a TestInfo object.
2103 TestInfo::~TestInfo() {
2109 // Creates a new TestInfo objec
[all...]
/external/chromium/testing/gtest/include/gtest/
H A Dgtest.h183 class TestInfo;
358 friend class TestInfo;
549 friend class TestInfo;
614 // A TestInfo object stores the following information about a test:
622 // The constructor of TestInfo registers itself with the UnitTest
625 class GTEST_API_ TestInfo { class in namespace:testing
627 // Destructs a TestInfo object. This function is not virtual, so
628 // don't inherit from TestInfo.
629 ~TestInfo();
682 friend TestInfo* interna
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest.h183 class TestInfo;
358 friend class TestInfo;
549 friend class TestInfo;
614 // A TestInfo object stores the following information about a test:
622 // The constructor of TestInfo registers itself with the UnitTest
625 class GTEST_API_ TestInfo { class in namespace:testing
627 // Destructs a TestInfo object. This function is not virtual, so
628 // don't inherit from TestInfo.
629 ~TestInfo();
682 friend TestInfo* interna
[all...]
/external/protobuf/gtest/include/gtest/
H A Dgtest.h451 friend class TestInfo;
517 // A TestInfo object stores the following information about a test:
525 // The constructor of TestInfo registers itself with the UnitTest
528 class TestInfo { class in namespace:testing
530 // Destructs a TestInfo object. This function is not virtual, so
531 // don't inherit from TestInfo.
532 ~TestInfo();
575 friend TestInfo* internal::MakeAndRegisterTestInfo(
594 // Constructs a TestInfo object. The newly constructed instance assumes
596 TestInfo(cons
[all...]
/external/chromium/sdch/open-vcdiff/src/gtest/internal/
H A Dgtest-internal.h103 class TestInfo; // Information about a test.
112 class TestInfoImpl; // Opaque implementation of TestInfo
531 static ::testing::TestInfo* const test_info_;\
535 ::testing::TestInfo* const test_case_name##_##test_name##_Test::test_info_ =\
536 ::testing::TestInfo::MakeAndRegisterInstance(\
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest.cc434 virtual void OnTestStart(const TestInfo*) {} argument
437 virtual void OnTestEnd(const TestInfo*) {} argument
1851 // class TestInfo
1853 // Constructs a TestInfo object.
1854 TestInfo::TestInfo(const char* test_case_name, function in class:testing::TestInfo
1862 // Destructs a TestInfo object.
1863 TestInfo::~TestInfo() {
1867 // Creates a TestInfo objec
[all...]

Completed in 2100 milliseconds

123