HomeSort by relevance Sort by last modified time
    Searched defs:TestCase (Results 176 - 200 of 252) sorted by null

1 2 3 4 5 6 78 91011

  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/src/
gtest.cc 317 static int SumOverTestCaseList(const std::vector<TestCase*>& case_list,
318 int (TestCase::*method)() const) {
327 static bool TestCasePassed(const TestCase* test_case) {
332 static bool TestCaseFailed(const TestCase* test_case) {
338 static bool ShouldRunTestCase(const TestCase* test_case) {
726 return SumOverTestCaseList(test_cases_, &TestCase::successful_test_count);
731 return SumOverTestCaseList(test_cases_, &TestCase::failed_test_count);
736 return SumOverTestCaseList(test_cases_, &TestCase::disabled_test_count);
741 return SumOverTestCaseList(test_cases_, &TestCase::total_test_count);
746 return SumOverTestCaseList(test_cases_, &TestCase::test_to_run_count)
    [all...]
  /bionic/tests/
gtest_main.cpp 173 class TestCase {
175 TestCase() {} // For std::vector<TestCase>.
176 explicit TestCase(const char* name) : name_(name) {}
272 static bool EnumerateTests(int argc, char** argv, std::vector<TestCase>& testcase_list) {
309 testcase_list.push_back(TestCase(start));
321 static void OnTestIterationStartPrint(const std::vector<TestCase>& testcase_list, size_t iteration,
330 for (const auto& testcase : testcase_list) {
331 test_count += testcase.TestCount();
344 static void OnTestEndPrint(const TestCase& testcase, size_t test_id)
573 auto& testcase = testcase_list[i]; local
595 auto& testcase = testcase_list[i]; local
789 TestCase& testcase = testcase_list[child_proc.testcase_id]; local
955 TestCase& testcase = testcase_list[testcase_id]; local
    [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest.h 183 class TestCase;
337 // each TestCase contains one or many Tests.
579 // testcase tags. Returns true if the property is valid.
680 friend class TestCase;
739 // TestCase is not copyable.
740 class GTEST_API_ TestCase {
742 // Creates a TestCase with the given name.
744 // TestCase does NOT have a default constructor. Always use this
745 // constructor to create a TestCase object.
754 TestCase(const char* name, const char* a_type_param
    [all...]
  /external/googletest/googletest/include/gtest/
gtest.h 173 class TestCase;
351 // each TestCase contains one or many Tests.
416 // the <testcase> element. Properties recorded from fixture's
565 friend class TestCase;
596 // testcase tags. Returns true if the property is valid.
712 friend class TestCase;
777 // TestCase is not copyable.
778 class GTEST_API_ TestCase {
780 // Creates a TestCase with the given name.
782 // TestCase does NOT have a default constructor. Always use thi
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
ICUResourceBundleTest.java 352 private static final class TestCase{
355 TestCase(String key, int value){
362 TestCase[] arr = new TestCase[]{
363 new TestCase ( "ooooooooooooooooo", 0 ),
364 new TestCase ( "oooooooooooooooo1", 1 ),
365 new TestCase ( "ooooooooooooooo1o", 2 ),
366 new TestCase ( "oo11ooo1ooo11111o", 25150 ),
367 new TestCase ( "oo11ooo1ooo111111", 25151 ),
368 new TestCase ( "o1111111111111111", 65535 )
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ICUResourceBundleTest.java 351 private static final class TestCase{
354 TestCase(String key, int value){
361 TestCase[] arr = new TestCase[]{
362 new TestCase ( "ooooooooooooooooo", 0 ),
363 new TestCase ( "oooooooooooooooo1", 1 ),
364 new TestCase ( "ooooooooooooooo1o", 2 ),
365 new TestCase ( "oo11ooo1ooo11111o", 25150 ),
366 new TestCase ( "oo11ooo1ooo111111", 25151 ),
367 new TestCase ( "o1111111111111111", 65535 )
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h 173 class TestCase;
351 // each TestCase contains one or many Tests.
416 // the <testcase> element. Properties recorded from fixture's
565 friend class TestCase;
596 // testcase tags. Returns true if the property is valid.
712 friend class TestCase;
777 // TestCase is not copyable.
778 class GTEST_API_ TestCase {
780 // Creates a TestCase with the given name.
782 // TestCase does NOT have a default constructor. Always use thi
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest.h 182 class TestCase;
336 // each TestCase contains one or many Tests.
578 // testcase tags. Returns true if the property is valid.
680 friend class TestCase;
739 // TestCase is not copyable.
740 class GTEST_API_ TestCase {
742 // Creates a TestCase with the given name.
744 // TestCase does NOT have a default constructor. Always use this
745 // constructor to create a TestCase object.
754 TestCase(const char* name, const char* a_type_param
    [all...]
  /external/mesa3d/src/gtest/include/gtest/
gtest.h 182 class TestCase;
336 // each TestCase contains one or many Tests.
578 // testcase tags. Returns true if the property is valid.
680 friend class TestCase;
739 // TestCase is not copyable.
740 class GTEST_API_ TestCase {
742 // Creates a TestCase with the given name.
744 // TestCase does NOT have a default constructor. Always use this
745 // constructor to create a TestCase object.
754 TestCase(const char* name, const char* a_type_param
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h 321 // each TestCase contains one or many Tests.
560 // testcase tags. Returns true if the property is valid.
651 friend class TestCase;
688 // TestCase is not copyable.
689 class GTEST_API_ TestCase {
691 // Creates a TestCase with the given name.
693 // TestCase does NOT have a default constructor. Always use this
694 // constructor to create a TestCase object.
701 TestCase(const char* name, const char* comment,
705 // Destructor of TestCase
    [all...]
  /external/skia/tests/
GrShapeTest.cpp 249 class TestCase {
251 TestCase(const Geo& geo, const SkPaint& paint, skiatest::Reporter* r,
257 TestCase(skiatest::Reporter* r, ShapeArgs... shapeArgs)
262 TestCase(const GrShape& shape, skiatest::Reporter* r, SkScalar scale = SK_Scalar1)
282 void compare(skiatest::Reporter*, const TestCase& that, ComparisonExpecation) const;
416 void TestCase::testExpectations(skiatest::Reporter* reporter, SelfExpectations expectations) const {
573 void TestCase::compare(skiatest::Reporter* r, const TestCase& that,
616 TestCase::SelfExpectations expectations;
619 TestCase fillCase(geo, fill, reporter)
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/
gtest.h 182 class TestCase;
336 // each TestCase contains one or many Tests.
578 // testcase tags. Returns true if the property is valid.
680 friend class TestCase;
739 // TestCase is not copyable.
740 class GTEST_API_ TestCase {
742 // Creates a TestCase with the given name.
744 // TestCase does NOT have a default constructor. Always use this
745 // constructor to create a TestCase object.
754 TestCase(const char* name, const char* a_type_param
    [all...]
  /external/v8/testing/gtest/include/gtest/
gtest.h 173 class TestCase;
351 // each TestCase contains one or many Tests.
416 // the <testcase> element. Properties recorded from fixture's
565 friend class TestCase;
596 // testcase tags. Returns true if the property is valid.
712 friend class TestCase;
777 // TestCase is not copyable.
778 class GTEST_API_ TestCase {
780 // Creates a TestCase with the given name.
782 // TestCase does NOT have a default constructor. Always use thi
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
gtest.h 173 class TestCase;
327 // each TestCase contains one or many Tests.
392 // the <testcase> element. Properties recorded from fixture's
542 friend class TestCase;
573 // testcase tags. Returns true if the property is valid.
683 friend class TestCase;
745 // TestCase is not copyable.
746 class GTEST_API_ TestCase {
748 // Creates a TestCase with the given name.
750 // TestCase does NOT have a default constructor. Always use thi
    [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/
gtest.h 173 class TestCase;
327 // each TestCase contains one or many Tests.
392 // the <testcase> element. Properties recorded from fixture's
542 friend class TestCase;
573 // testcase tags. Returns true if the property is valid.
675 friend class TestCase;
737 // TestCase is not copyable.
738 class GTEST_API_ TestCase {
740 // Creates a TestCase with the given name.
742 // TestCase does NOT have a default constructor. Always use thi
    [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/
gtest.h 173 class TestCase;
327 // each TestCase contains one or many Tests.
392 // the <testcase> element. Properties recorded from fixture's
542 friend class TestCase;
573 // testcase tags. Returns true if the property is valid.
675 friend class TestCase;
737 // TestCase is not copyable.
738 class GTEST_API_ TestCase {
740 // Creates a TestCase with the given name.
742 // TestCase does NOT have a default constructor. Always use thi
    [all...]
  /external/fmtlib/test/
gmock-gtest-all.cc     [all...]
  /external/googletest/googletest/src/
gtest.cc 335 static int SumOverTestCaseList(const std::vector<TestCase*>& case_list,
336 int (TestCase::*method)() const) {
345 static bool TestCasePassed(const TestCase* test_case) {
350 static bool TestCaseFailed(const TestCase* test_case) {
356 static bool ShouldRunTestCase(const TestCase* test_case) {
752 return SumOverTestCaseList(test_cases_, &TestCase::successful_test_count);
757 return SumOverTestCaseList(test_cases_, &TestCase::failed_test_count);
763 &TestCase::reportable_disabled_test_count);
768 return SumOverTestCaseList(test_cases_, &TestCase::disabled_test_count);
773 return SumOverTestCaseList(test_cases_, &TestCase::reportable_test_count)
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest.cc 335 static int SumOverTestCaseList(const std::vector<TestCase*>& case_list,
336 int (TestCase::*method)() const) {
345 static bool TestCasePassed(const TestCase* test_case) {
350 static bool TestCaseFailed(const TestCase* test_case) {
356 static bool ShouldRunTestCase(const TestCase* test_case) {
752 return SumOverTestCaseList(test_cases_, &TestCase::successful_test_count);
757 return SumOverTestCaseList(test_cases_, &TestCase::failed_test_count);
763 &TestCase::reportable_disabled_test_count);
768 return SumOverTestCaseList(test_cases_, &TestCase::disabled_test_count);
773 return SumOverTestCaseList(test_cases_, &TestCase::reportable_test_count)
    [all...]
  /external/protobuf/gtest/fused-src/gtest/
gtest-all.cc     [all...]
  /external/v8/testing/gtest/src/
gtest.cc 335 static int SumOverTestCaseList(const std::vector<TestCase*>& case_list,
336 int (TestCase::*method)() const) {
345 static bool TestCasePassed(const TestCase* test_case) {
350 static bool TestCaseFailed(const TestCase* test_case) {
356 static bool ShouldRunTestCase(const TestCase* test_case) {
752 return SumOverTestCaseList(test_cases_, &TestCase::successful_test_count);
757 return SumOverTestCaseList(test_cases_, &TestCase::failed_test_count);
763 &TestCase::reportable_disabled_test_count);
768 return SumOverTestCaseList(test_cases_, &TestCase::disabled_test_count);
773 return SumOverTestCaseList(test_cases_, &TestCase::reportable_test_count)
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
gtest-all.cc     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_argparse.py 21 class TestCase(unittest.TestCase):
30 super(TestCase, self).assertEqual(obj1, obj2)
254 bases = TestCase,
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
fake_filesystem_test.py 41 class TestCase(unittest.TestCase):
49 class FakeDirectoryUnitTest(TestCase):
149 class NormalizePathTest(TestCase):
181 class GetPathComponentsTest(TestCase):
207 class FakeFilesystemUnitTest(TestCase):
489 class FakeOsModuleTest(TestCase):
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationMiscTest.java 728 public void TestCase() {
730 String[] testCase = {
775 testCase[i], testCase[j],
802 testCase[i], testCase[j],
    [all...]

Completed in 680 milliseconds

1 2 3 4 5 6 78 91011