HomeSort by relevance Sort by last modified time
    Searched defs:test_case (Results 1 - 14 of 14) sorted by null

  /external/protobuf/gtest/samples/
sample9_unittest.cc 143 const TestCase& test_case = *unit_test.GetTestCase(i); local
144 for (int j = 0; j < test_case.total_test_count(); ++j) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
  /external/protobuf/gtest/test/
gtest-unittest-api_test.cc 76 const TestCase* test_case = unit_test.GetTestCase(i); local
77 if (0 == strcmp(test_case->name(), name))
78 return test_case;
86 static TestInfo const** const GetSortedTests(const TestCase* test_case) {
88 new const TestInfo*[test_case->total_test_count()];
90 for (int i = 0; i < test_case->total_test_count(); ++i)
91 tests[i] = test_case->GetTestInfo(i);
93 std::sort(tests, tests + test_case->total_test_count(),
147 const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); local
148 ASSERT_TRUE(test_case != NULL)
211 const TestCase* test_case = UnitTestHelper::FindTestCase("DISABLED_Test"); local
280 const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); local
    [all...]
gtest_unittest.cc 5103 const TestCase* const test_case = GetUnitTestImpl()-> local
    [all...]
  /external/chromium/base/test/
test_suite.h 91 const testing::TestCase& test_case = *instance->GetTestCase(i); local
92 for (int j = 0; j < test_case.total_test_count(); ++j) {
93 if (test_match(*test_case.GetTestInfo(j))) {
  /external/chromium/base/
time_win_unittest.cc 187 int test_case = 0; local
188 while (cases[test_case].func) {
191 cases[test_case].func();
200 printf("%s: %1.2fus per call\n", cases[test_case].description,
202 test_case++;
  /external/chromium/third_party/icu/source/test/letest/
gendata.cpp 133 UnicodeString test_case = UNICODE_STRING_SIMPLE("test-case"); local
149 if (testCase->getTagName().compare(test_case) == 0) {
xmlreader.cpp 146 UnicodeString test_case = UNICODE_STRING_SIMPLE("test-case"); local
167 if (testCase->getTagName().compare(test_case) == 0) {
letest.cpp 579 UnicodeString test_case = UNICODE_STRING_SIMPLE("test-case"); local
600 if (testCase->getTagName().compare(test_case) == 0) {
    [all...]
  /external/icu4c/test/letest/
gendata.cpp 133 UnicodeString test_case = UNICODE_STRING_SIMPLE("test-case"); local
149 if (testCase->getTagName().compare(test_case) == 0) {
xmlreader.cpp 146 UnicodeString test_case = UNICODE_STRING_SIMPLE("test-case"); local
167 if (testCase->getTagName().compare(test_case) == 0) {
letest.cpp 579 UnicodeString test_case = UNICODE_STRING_SIMPLE("test-case"); local
600 if (testCase->getTagName().compare(test_case) == 0) {
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.cc 217 static bool TestCasePassed(const TestCase* test_case) {
218 return test_case->should_run() && test_case->Passed();
222 static bool TestCaseFailed(const TestCase* test_case) {
223 return test_case->should_run() && test_case->Failed();
226 // Returns true iff test_case contains at least one test that should
228 static bool ShouldRunTestCase(const TestCase* test_case) {
229 return test_case->should_run();
1729 const TestCase* const test_case = impl->current_test_case(); local
3097 TestCase* const test_case = local
3223 TestCase * const test_case = test_case_node->element(); local
3260 const TestCase* const test_case = test_case_node->element(); local
    [all...]
  /external/gtest/src/
gtest.cc 277 static bool TestCasePassed(const TestCase* test_case) {
278 return test_case->should_run() && test_case->Passed();
282 static bool TestCaseFailed(const TestCase* test_case) {
283 return test_case->should_run() && test_case->Failed();
286 // Returns true iff test_case contains at least one test that should
288 static bool ShouldRunTestCase(const TestCase* test_case) {
289 return test_case->should_run();
1965 const TestCase* const test_case = impl->current_test_case(); local
3557 TestCase* const test_case = local
3819 TestCase * const test_case = test_case_node->element(); local
3863 const TestCase* const test_case = test_case_node->element(); local
    [all...]
  /external/protobuf/gtest/src/
gtest.cc 305 static bool TestCasePassed(const TestCase* test_case) {
306 return test_case->should_run() && test_case->Passed();
310 static bool TestCaseFailed(const TestCase* test_case) {
311 return test_case->should_run() && test_case->Failed();
314 // Returns true iff test_case contains at least one test that should
316 static bool ShouldRunTestCase(const TestCase* test_case) {
317 return test_case->should_run();
1964 const TestCase* const test_case = impl->current_test_case(); local
2785 const TestCase& test_case = *unit_test.GetTestCase(i); local
3865 TestCase** test_case = test_cases_.FindIf(TestCaseNameIs(test_case_name)); local
4148 TestCase* const test_case = test_cases_.GetElement(i); local
4191 const TestCase* const test_case = test_cases_.GetElement(i); local
    [all...]

Completed in 434 milliseconds