HomeSort by relevance Sort by last modified time
    Searched refs:TestInfo (Results 1 - 25 of 34) sorted by null

1 2

  /external/webkit/WebKit/gtk/tests/
testhittestresult.c 30 } TestInfo;
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*)data
    [all...]
testkeyevents.c 31 } TestInfo;
37 TestInfo* info;
40 TestInfo*
43 TestInfo* info;
45 info = g_slice_new(TestInfo);
53 test_info_destroy(TestInfo* info)
56 g_slice_free(TestInfo, info);
130 fixture->info = (TestInfo*)data;
  /external/protobuf/gtest/samples/
sample9_unittest.cc 44 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);
sample10_unittest.cc 44 using ::testing::TestInfo;
81 virtual void OnTestStart(const TestInfo& test_info) {
86 virtual void OnTestEnd(const TestInfo& test_info) {
  /libcore/dalvik/src/main/java/dalvik/annotation/
TestInfo.java 32 public @interface TestInfo {
  /external/protobuf/gtest/test/
gtest_shuffle_test_.cc 43 using ::testing::TestInfo;
87 virtual void OnTestStart(const TestInfo& test_info) {
gtest-unittest-api_test.cc 86 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);
gtest-listener_test.cc 53 using ::testing::TestInfo;
94 virtual void OnTestStart(const TestInfo& /*test_info*/) {
102 virtual void OnTestEnd(const TestInfo& /*test_info*/) {
  /external/chromium/base/test/
test_suite.h 31 typedef bool (*TestMatch)(const testing::TestInfo&);
38 virtual void OnTestStart(const testing::TestInfo& test_info) {
43 virtual void OnTestEnd(const testing::TestInfo& test_info) {
76 static bool FlakyTest(const testing::TestInfo& test) {
81 static bool NonFlakyFailures(const testing::TestInfo& test) {
  /external/chromium/sdch/open-vcdiff/src/gtest/src/
gtest-internal-inl.h 538 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/
gtest-internal-inl.h 600 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...]
gtest.cc 499 virtual void OnTestStart(const TestInfo*) {}
502 virtual void OnTestEnd(const TestInfo*) {}
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h 451 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 {
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(const char* test_case_name, const char* name
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-internal.h 103 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/
gtest.cc 434 virtual void OnTestStart(const TestInfo*) {}
437 virtual void OnTestEnd(const TestInfo*) {}
    [all...]
gtest.h 318 // A TestInfo object stores the following information about a test:
326 // The constructor of TestInfo registers itself with the UnitTest
329 class TestInfo {
331 // Destructs a TestInfo object. This function is not virtual, so
332 // don't inherit from TestInfo.
333 ~TestInfo();
335 // Creates a TestInfo object and registers it with the UnitTest
349 static TestInfo* MakeAndRegisterInstance(
398 // Constructs a TestInfo object.
399 TestInfo(const char* test_case_name, const char* name
    [all...]
gtest-death-test.cc 219 TestInfo* const info = GetUnitTestImpl()->current_test_info();
597 const TestInfo* const info = impl->current_test_info();
  /external/gtest/include/gtest/internal/
gtest-param-util.h 478 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
499 linked_ptr<TestInfo> test_info = *test_it;
535 struct TestInfo {
536 TestInfo(const char* test_case_base_name,
547 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
gtest-internal.h 108 class TestInfo; // Information about a test.
117 class TestInfoImpl; // Opaque implementation of TestInfo
578 // Creates a new TestInfo object and registers it with Google Test;
593 // The newly created TestInfo instance will assume
595 TestInfo* MakeAndRegisterTestInfo(
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 487 tests_.push_back(linked_ptr<TestInfo>(new TestInfo(test_case_name,
508 linked_ptr<TestInfo> test_info = *test_it;
544 struct TestInfo {
545 TestInfo(const char* test_case_base_name,
556 typedef ::std::vector<linked_ptr<TestInfo> > TestInfoContainer;
gtest-internal.h 107 class TestInfo; // Information about a test.
115 class TestInfoImpl; // Opaque implementation of TestInfo
577 // Creates a new TestInfo object and registers it with Google Test;
592 // The newly created TestInfo instance will assume
594 TestInfo* MakeAndRegisterTestInfo(
    [all...]
  /external/protobuf/gtest/src/
gtest-internal-inl.h 516 TestInfoImpl(TestInfo* parent, const char* test_case_name,
566 // Clears the test result in the given TestInfo object.
567 static void ClearTestResult(TestInfo * test_info) {
573 TestInfo* const parent_; // The owner of this object
863 // Adds a TestInfo to the unit test.
869 // test_info: the TestInfo object
872 TestInfo * test_info) {
    [all...]
gtest.cc     [all...]
  /external/gtest/include/gtest/
gtest.h 350 // A TestInfo object stores the following information about a test:
358 // The constructor of TestInfo registers itself with the UnitTest
361 class TestInfo {
363 // Destructs a TestInfo object. This function is not virtual, so
364 // don't inherit from TestInfo.
365 ~TestInfo();
405 friend TestInfo* internal::MakeAndRegisterTestInfo(
421 // Constructs a TestInfo object. The newly constructed instance assumes
423 TestInfo(const char* test_case_name, const char* name,
431 GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewTestProjectCreationPage.java 116 private final TestInfo mInfo = new TestInfo();
176 public class TestInfo {
258 * Returns a {@link TestInfo} structure that collects all externally visible information
261 public TestInfo getTestInfo() {
    [all...]

Completed in 476 milliseconds

1 2