HomeSort by relevance Sort by last modified time
    Searched full:testcase (Results 326 - 350 of 9381) sorted by null

<<11121314151617181920>>

  /external/guava/guava-gwt/test/com/google/common/collect/
TablesTest_gwt.java 22 com.google.common.collect.TablesTest testCase = new com.google.common.collect.TablesTest();
23 testCase.testEntryEquals();
27 com.google.common.collect.TablesTest testCase = new com.google.common.collect.TablesTest();
28 testCase.testEntryEqualsNull();
32 com.google.common.collect.TablesTest testCase = new com.google.common.collect.TablesTest();
33 testCase.testImmutableEntryToString();
UnmodifiableListIteratorTest_gwt.java 22 com.google.common.collect.UnmodifiableListIteratorTest testCase = new com.google.common.collect.UnmodifiableListIteratorTest();
23 testCase.testAdd();
27 com.google.common.collect.UnmodifiableListIteratorTest testCase = new com.google.common.collect.UnmodifiableListIteratorTest();
28 testCase.testRemove();
32 com.google.common.collect.UnmodifiableListIteratorTest testCase = new com.google.common.collect.UnmodifiableListIteratorTest();
33 testCase.testSet();
  /external/guava/guava-gwt/test/com/google/common/net/
UrlEscapersTest_gwt.java 22 com.google.common.net.UrlEscapersTest testCase = new com.google.common.net.UrlEscapersTest();
23 testCase.testUrlFormParameterEscaper();
27 com.google.common.net.UrlEscapersTest testCase = new com.google.common.net.UrlEscapersTest();
28 testCase.testUrlFragmentEscaper();
32 com.google.common.net.UrlEscapersTest testCase = new com.google.common.net.UrlEscapersTest();
33 testCase.testUrlPathSegmentEscaper();
  /external/icu/icu4c/source/test/perf/ustrperf/
stringperf.cpp 125 TESTCASE(0, TestCtor);
126 TESTCASE(1, TestCtor1);
127 TESTCASE(2, TestCtor2);
128 TESTCASE(3, TestCtor3);
129 TESTCASE(4, TestAssign);
130 TESTCASE(5, TestAssign1);
131 TESTCASE(6, TestAssign2);
132 TESTCASE(7, TestGetch);
133 TESTCASE(8, TestCatenate);
134 TESTCASE(9, TestScan)
    [all...]
  /external/testng/src/main/java/org/testng/reporters/
XMLConstants.java 15 /** the testcase element */
16 String TESTCASE = "testcase";
33 /** name attribute for property, testcase and testsuite elements */
36 /** time attribute for testcase and testsuite elements */
63 /** classname attribute for testcase elements */
  /external/libxml2/test/xsdtest/
xsdtestsuite.xml 5 <testCase>
30 </testCase>
31 <testCase>
49 </testCase>
50 <testCase>
68 </testCase>
72 <testCase>
100 </testCase>
104 <testCase>
141 </testCase>
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
ActivityTestBase.java 111 List<TestCase> testCases = mTestCaseBuilder.getTestCases();
117 for (TestCase testCase : testCases) {
118 if (!testCase.wasTestRan) {
133 protected Point runRenderSpec(TestCase testCase) {
135 testCase.layoutID, testCase.canvasClient,
136 null, testCase.viewInitializer, testCase.useHardware)
    [all...]
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
TestListParser.java 37 TestCase currentCase = null;
96 private TestCase handleCase(TestSuite suite, String caseName) {
97 TestCase testCase = new TestCase(caseName);
98 suite.addCase(testCase);
99 return testCase;
102 private void handleTest(TestCase testCase, String test, int timeout) {
103 testCase.addTest(test, timeout)
    [all...]
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestGrouping.java 24 import junit.framework.TestCase;
51 SortedSet<Class<? extends TestCase>> testCaseClasses;
53 public static final Comparator<Class<? extends TestCase>> SORT_BY_SIMPLE_NAME
56 public static final Comparator<Class<? extends TestCase>> SORT_BY_FULLY_QUALIFIED_NAME
62 public TestGrouping(Comparator<Class<? extends TestCase>> comparator) {
63 testCaseClasses = new TreeSet<Class<? extends TestCase>>(comparator);
72 for (Class<? extends TestCase> testCase : testCaseClasses) {
73 for (Method testMethod : getTestMethods(testCase)) {
74 testMethods.add(new TestMethod(testMethod, testCase));
    [all...]
  /external/icu/icu4c/source/test/perf/charperf/
charperf.cpp 97 TESTCASE(0, TestIsAlpha);
98 TESTCASE(1, TestIsUpper);
99 TESTCASE(2, TestIsLower);
100 TESTCASE(3, TestIsDigit);
101 TESTCASE(4, TestIsSpace);
102 TESTCASE(5, TestIsAlphaNumeric);
103 TESTCASE(6, TestIsPrint);
104 TESTCASE(7, TestIsControl);
105 TESTCASE(8, TestToLower);
106 TESTCASE(9, TestToUpper)
    [all...]
  /external/v8/test/test262/
testcfg.py 40 from testrunner.objects import testcase namespace
83 def GetFlagSets(self, testcase, variant):
84 if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes):
89 test_record = self.suite.GetTestRecord(testcase)
122 case = testcase.TestCase(self, testname)
126 def GetFlagsForTestCase(self, testcase, context):
127 return (testcase.flags + context.mode_flags + self.harness +
128 self.GetIncludesForTest(testcase) + ["--harmony"]
    [all...]
  /external/icu/icu4c/source/test/perf/convperf/
convperf.cpp 44 TESTCASE(0,TestICU_CleanOpenAllConverters);// This calls u_cleanup()
45 TESTCASE(1,TestICU_OpenAllConverters);// This doesn't call u_cleanup()
47 TESTCASE(2,TestICU_UTF8_ToUnicode);
48 TESTCASE(3,TestICU_UTF8_FromUnicode);
49 TESTCASE(4,TestWinANSI_UTF8_ToUnicode);
50 TESTCASE(5,TestWinANSI_UTF8_FromUnicode);
51 TESTCASE(6,TestWinIML2_UTF8_ToUnicode);
52 TESTCASE(7,TestWinIML2_UTF8_FromUnicode);
54 TESTCASE(8,TestICU_Latin1_ToUnicode);
55 TESTCASE(9,TestICU_Latin1_FromUnicode)
    [all...]
  /external/v8/test/benchmarks/
testcfg.py 34 from testrunner.objects import testcase namespace
41 def FilterVariantsByTest(self, testcase):
42 if testcase.outcomes and statusfile.OnlyStandardVariant(
43 testcase.outcomes):
47 def GetFlagSets(self, testcase, variant):
117 tests.append(testcase.TestCase(self, test))
120 def GetFlagsForTestCase(self, testcase, context):
123 if testcase.path.startswith("kraken"):
124 result.append(os.path.join(self.testroot, "%s-data.js" % testcase.path)
    [all...]
  /frameworks/base/test-runner/src/android/test/
AndroidTestRunner.java 26 import junit.framework.TestCase;
47 private List<TestCase> mTestCases;
60 TestCase testCase = buildSingleTestMethod(testClass, testMethodName);
61 mTestCases = Lists.newArrayList(testCase);
73 mTestCases = (List<TestCase>) TestCaseUtil.getTests(test, true);
101 private TestCase buildSingleTestMethod(Class testClass, String testMethodName) {
117 private TestCase newSingleTestMethod(Class testClass, String testMethodName,
120 TestCase testCase = (TestCase) constructor.newInstance(args)
    [all...]
  /cts/suite/audio_quality/test/
ModelBuilderTest.cpp 29 TaskGeneric* testCase = mModelBuilder.parseTestDescriptionXml(xmlFile);
30 ASSERT_TRUE(testCase != NULL);
31 //TODO verify TestCase
32 delete testCase;
37 TaskGeneric* testCase = mModelBuilder.parseTestDescriptionXml(xmlFile);
38 ASSERT_TRUE(testCase != NULL);
39 //TODO verify TestCase
40 delete testCase;
47 //TODO verify TestCase
AudioHardwareTest.cpp 39 TaskCase* testCase = new TaskCase();
40 ASSERT_TRUE(testCase != NULL);
41 android::sp<AudioHardware> playback = AudioHardware::createAudioHw(false, true, testCase);
43 android::sp<AudioHardware> recording = AudioHardware::createAudioHw(false, false, testCase);
45 delete testCase;
  /external/guava/guava-gwt/test/com/google/common/testing/
TearDownStackTest_gwt.java 22 com.google.common.testing.TearDownStackTest testCase = new com.google.common.testing.TearDownStackTest();
25 testCase.testMultipleTearDownsHappenInOrder();
30 testCase.tearDown();
48 com.google.common.testing.TearDownStackTest testCase = new com.google.common.testing.TearDownStackTest();
51 testCase.testSingleTearDown();
56 testCase.tearDown();
74 com.google.common.testing.TearDownStackTest testCase = new com.google.common.testing.TearDownStackTest();
77 testCase.testThrowingTearDown();
82 testCase.tearDown();
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-recognizers.rb 10 class TestTokenSource < Test::Unit::TestCase
37 class TestLexer < Test::Unit::TestCase
50 class TestBaseRecognizer(unittest.TestCase) | 07 | [x]
52 class TestTokenSource(unittest.TestCase) | 20 | [x]
54 class TestLexer(unittest.TestCase) | 54 | [x]
  /external/chromium-trace/catapult/third_party/coverage/coverage/
backunittest.py 15 """Does `unittest.TestCase` have `method` defined?"""
16 return hasattr(unittest.TestCase, method)
19 class TestCase(unittest.TestCase):
20 """Just like unittest.TestCase, but with assert methods added.
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/annotation/
HasClassAnnotationTest.java 20 import junit.framework.TestCase;
24 public class HasClassAnnotationTest extends TestCase {
37 Class<? extends TestCase> aClass,
46 static class SmokeTestExample extends TestCase {
52 static class NonSmokeTestExample extends TestCase {
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_codecmaps_jp.py 12 unittest.TestCase):
28 unittest.TestCase):
35 unittest.TestCase):
50 unittest.TestCase):
57 unittest.TestCase):
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_codecmaps_jp.py 12 unittest.TestCase):
28 unittest.TestCase):
35 unittest.TestCase):
50 unittest.TestCase):
57 unittest.TestCase):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_codecmaps_jp.py 12 unittest.TestCase):
28 unittest.TestCase):
35 unittest.TestCase):
50 unittest.TestCase):
57 unittest.TestCase):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_codecmaps_jp.py 12 unittest.TestCase):
28 unittest.TestCase):
35 unittest.TestCase):
50 unittest.TestCase):
57 unittest.TestCase):
  /build/soong/cc/
cc_test.go 47 for _, testCase := range lastUniqueElementsTestCases {
48 out := lastUniqueElements(testCase.in)
49 if !reflect.DeepEqual(out, testCase.out) {
51 t.Errorf(" input: %#v", testCase.in)
52 t.Errorf(" expected: %#v", testCase.out)
144 for _, testCase := range splitListForSizeTestCases {
145 out, _ := splitListForSize(testCase.in, testCase.size)
146 if !reflect.DeepEqual(out, testCase.out) {
148 t.Errorf(" input: %#v", testCase.in
    [all...]

Completed in 3946 milliseconds

<<11121314151617181920>>