HomeSort by relevance Sort by last modified time
    Searched refs:testCase (Results 51 - 75 of 95) sorted by null

1 23 4

  /external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
PatternSyntaxExceptionTest.java 24 import junit.framework.TestCase;
33 public class PatternSyntaxExceptionTest extends TestCase {
34 public void testCase() {
ModeTest.java 23 import junit.framework.TestCase;
29 public class ModeTest extends TestCase {
30 public void testCase() throws PatternSyntaxException {
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
XmlGenerator.java 166 private void writeTestCases(PrintWriter writer, Collection<TestCase> cases,
168 Collection<TestCase> sorted = sortCollection(cases);
169 for (TestCase testCase : sorted) {
170 String name = testCase.getName();
171 writer.append("<TestCase name=\"").append(name).println("\">");
174 writeTests(writer, testCase.getTests(), nameCollector);
178 writer.println("</TestCase>");
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
JarHostTest.java 35 import junit.framework.TestCase;
268 if (TestCase.class.isAssignableFrom(testClass)) {
269 TestCase testCase = (TestCase)testClass.newInstance();
270 testCase.setName(testName);
271 return testCase;
  /external/skia/tests/
WArrayTest.cpp 159 TestWData* testCase = (TestWData*)tc;
160 if (gId >= 0 && gId < testCase->fAdvancesLen) {
161 *advance = testCase->fAdvances[gId];
ClipStackTest.cpp 251 int testCase = 0;
285 SkASSERT(testCase < gNumCases);
286 REPORTER_ASSERT(reporter, devClipBound == gAnswerRectsBW[testCase]);
287 ++testCase;
  /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...]
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
TestSuiteBuilderTest.java 31 import junit.framework.TestCase;
41 public class TestSuiteBuilderTest extends TestCase {
214 TestCase testCase = (TestCase) test;
215 return testCase.getClass().getSimpleName() + "." + testCase.getName();
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseGitDiffHeader.pl 480 foreach my $testCase (@testCaseHashRefs) {
481 my $testNameStart = "parseGitDiffHeader(): $testCase->{diffName}: comparing";
484 open($fileHandle, "<", \$testCase->{inputText});
488 my $expectedReturn = $testCase->{expectedReturn};
493 is($gotNextLine, $testCase->{expectedNextLine}, "$testNameStart next read line.");
parseDiff.pl 1194 foreach my $testCase (@testCaseHashRefs) {
1195 my $testNameStart = "parseDiff(): $testCase->{diffName}: comparing";
1198 open($fileHandle, "<", \$testCase->{inputText});
1202 my $expectedReturn = $testCase->{expectedReturn};
1207 is($gotNextLine, $testCase->{expectedNextLine}, "$testNameStart next read line.");
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
TestCaseEditController.java 95 private TestCase currentTestCase = null;
131 public void setCurrentTestCase(TestCase testCase) {
132 if(testCase == null) throw new IllegalArgumentException("Null");
133 this.listCases.setSelectedValue(testCase, true);
134 this.currentTestCase = testCase;
318 private void OnTestCaseSelected(TestCase testCase) {
319 //if(testCase == null) throw new RuntimeException("Null TestCase");
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
FeatureSpecificTestSuiteBuilder.java 28 import junit.framework.TestCase;
276 } else if (test instanceof TestCase) {
277 TestCase testCase = (TestCase) test;
278 return Platform.getMethod(testCase.getClass(), testCase.getName());
281 "unable to extract method from test: not a TestCase.");
  /external/icu4c/test/intltest/
numfmtst.cpp 941 UnicodeString testCase = ctou(lenientAffixTestCases[t]);
943 format->parse(testCase, n, status);
944 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong());
965 UnicodeString testCase = ctou(lenientMinusTestCases[t]);
967 mFormat->parse(testCase, n, status);
968 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong());
    [all...]
csdetest.cpp 522 const UXMLElement *testCase;
525 while((testCase = root->nextChildElement(tc)) != NULL) {
526 if (testCase->getTagName().compare(test_case) == 0) {
527 const UnicodeString *id = testCase->getAttribute(id_attr);
528 const UnicodeString *encodings = testCase->getAttribute(enc_attr);
529 const UnicodeString text = testCase->getText(TRUE);
  /cts/tests/src/android/app/cts/
DialogStubActivity.java 295 ActivityInstrumentationTestCase2<T> testCase, int dialogNumber) {
298 testCase.setActivityIntent(intent);
299 return testCase.getActivity();
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
ModeTest.java 19 import junit.framework.TestCase;
28 public class ModeTest extends TestCase {
30 public void testCase() throws PatternSyntaxException {
  /external/icu4c/test/letest/
letest.cpp 596 const UXMLElement *testCase;
599 while((testCase = root->nextChildElement(tc)) != NULL) {
600 if (testCase->getTagName().compare(test_case) == 0) {
601 char *id = getCString(testCase->getAttribute(id_attr));
602 char *script = getCString(testCase->getAttribute(script_attr));
603 char *lang = getCString(testCase->getAttribute(lang_attr));
633 while((element = testCase->nextChildElement(ec)) != NULL) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-junit.jar 
  /frameworks/base/test-runner/src/android/test/
TestRunner.java 74 mJUnitClass = Class.forName("junit.framework.TestCase", false, null);
290 TestCase testcase = null; local
291 if (test instanceof TestCase) {
292 testcase = (TestCase) test;
298 if (testcase != null) {
299 testcase.setUp(mContext);
315 if (testcase != null && didSetup) {
317 testcase.tearDown()
338 AndroidTestCase testcase = (AndroidTestCase) test; local
499 AndroidTestCase testcase = (AndroidTestCase) test; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldRuntimeTest.java 31 public class OldRuntimeTest extends junit.framework.TestCase {
301 void checkExec(int testCase, String [] envp, File file) {
312 switch(testCase) {
  /external/icu4c/test/cintltst/
cmsccoll.c     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.test.performance_3.6.0.v20091014.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
junit.jar 
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 
  /external/robolectric/lib/main/
junit-dep-4.8.2.jar 

Completed in 2864 milliseconds

1 23 4