HomeSort by relevance Sort by last modified time
    Searched refs:testClass (Results 101 - 125 of 153) sorted by null

1 2 3 45 6 7

  /frameworks/base/core/tests/utillib/src/android/test/
BandwidthTestCase.java 47 Class testClass = null;
53 testClass = getClass();
54 method = testClass.getMethod(fName, (Class[]) null);
90 testClass.isAnnotationPresent(BandwidthTest.class)) {
  /frameworks/base/test-runner/src/junit/textui/
TestRunner.java 61 static public void run(Class<? extends TestCase> testClass) {
62 run(new TestSuite(testClass));
187 Class<? extends TestCase> testClass= loadSuiteClass(testCase).asSubclass(TestCase.class);
188 Test test= TestSuite.createTest(testClass, method);
  /external/junit/src/org/junit/experimental/
ParallelComputer.java 73 protected Runner getRunner(RunnerBuilder builder, Class<?> testClass)
75 Runner runner= super.getRunner(builder, testClass);
  /external/junit/src/org/junit/internal/runners/
ErrorReportingRunner.java 18 public ErrorReportingRunner(Class<?> testClass, Throwable cause) {
19 fTestClass= testClass;
MethodValidator.java 26 private TestClass fTestClass;
28 public MethodValidator(TestClass testClass) {
29 fTestClass = testClass;
TestClass.java 22 public class TestClass {
25 public TestClass(Class<?> klass) {
80 private List<Class<?>> getSuperClasses(Class< ?> testClass) {
82 Class<?> current= testClass;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
AndroidJUnitLaunchInfo.java 103 * @param testClass fully qualfied test class to run
104 * Expected format: x.y.x.testclass
106 public void setTestClass(String testClass) {
107 mTestClass = testClass;
121 * Sets the test method to run. testClass must also be set.
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarOutputStreamTest.java 39 // testClass file`s actual extension is .class, since having .class
46 final String testClass = "hyts_mainClass.ser";
74 Support_Resources.copyFile(resources, null, testClass);
75 URL jarURL = new URL((new File(resources, testClass)).toURL()
  /external/junit/src/org/junit/experimental/categories/
Categories.java 131 Class<?> testClass= description.getTestClass();
132 if (testClass == null)
134 return Description.createSuiteDescription(testClass);
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
TestObject.cpp 41 static NPClass testClass = {
59 return &testClass;
179 testObject->testObject = browser->createobject(0, &testClass);
  /frameworks/testing/uiautomator/library/src/com/android/uiautomator/testrunner/
UiAutomatorTestRunner.java 231 String testClass = test.getClass().getName();
234 mTestResult.putString(REPORT_KEY_NAME_CLASS, testClass);
238 if (testClass != null && !testClass.equals(mTestClass)) {
240 String.format("\n%s:", testClass));
241 mTestClass = testClass;
  /development/tools/hosttestlib/src/com/android/hosttest/
DeviceTestRunner.java 139 Class testClass = loadSuiteClass(testCase);
140 Test test = DeviceTestSuite.createTest(testClass, method);
  /external/icu4c/tools/ctestfw/
tstdtmod.cpp 32 testClass.errln(msg);
51 testClass.dataerrln(msg);
61 // testClass.errln("%s failure - %s", testName, errorName());
66 testClass.dataerrln(msg);
68 testClass.errln(msg);
  /external/junit/src/junit/runner/
BaseTestRunner.java 99 Class<?> testClass= null;
101 testClass= loadSuiteClass(suiteClassName);
114 suiteMethod= testClass.getMethod(SUITE_METHODNAME, new Class[0]);
118 return new TestSuite(testClass);
  /frameworks/base/test-runner/src/junit/runner/
BaseTestRunner.java 99 Class testClass= null;
101 testClass= loadSuiteClass(suiteClassName);
114 suiteMethod= testClass.getMethod(SUITE_METHODNAME, new Class[0]);
118 return new TestSuite(testClass);
  /external/icu4c/test/intltest/
uobjtest.cpp 64 delete testClass(f, #c, #f, c ::getStaticClassID()); \
71 delete testClass(Transliterator::createInstance(UnicodeString(t), UTRANS_FORWARD,parseError,status), #c, "Transliterator: " #t, c ::getStaticClassID()); \
78 delete testClass(new c x, #c, "new " #c #x, c ::getStaticClassID()); \
85 delete testClass(new c, #c, "new " #c , c::getStaticClassID())
87 testClass(NULL, #c, NULL, c::getStaticClassID())
90 delete testClass(objVar, #c, #f, objVar!=NULL? objVar->getDynamicClassID(): NULL); \
104 UObject *UObjectTest::testClass(UObject *obj,
  /external/junit/src/org/junit/experimental/max/
MaxCore.java 62 public Result run(Class<?> testClass) {
63 return run(Request.aClass(testClass));
  /external/junit/src/org/junit/runners/model/
TestClass.java 21 public class TestClass {
29 * Creates a {@code TestClass} wrapping {@code klass}. Each time this
32 * try to share instances of {@code TestClass} where possible.
34 public TestClass(Class<?> klass) {
94 private List<Class<?>> getSuperClasses(Class<?> testClass) {
96 Class<?> current= testClass;
  /frameworks/base/test-runner/src/android/test/
InstrumentationCoreTestRunner.java 149 private void printMemory(Class<? extends Test> testClass) {
159 Log.d(TAG, "Now executing : " + testClass.getName());
InstrumentationTestRunner.java 424 for (String testClass : testClasses) {
425 parseTestClass(testClass, testSuiteBuilder);
433 * Expected format: com.android.TestClass#testMethod
762 String testClass = test.getClass().getName();
765 mTestResult.putString(REPORT_KEY_NAME_CLASS, testClass);
769 if (testClass != null && !testClass.equals(mTestClass)) {
771 String.format("\n%s:", testClass));
772 mTestClass = testClass;
    [all...]
  /cts/tests/core/runner/src/android/test/
InstrumentationCtsTestRunner.java 184 private void printMemory(Class<? extends Test> testClass) {
194 Log.d(TAG, "Now executing : " + testClass.getName());
  /external/junit/src/junit/framework/
TestSuite.java 208 public void addTestSuite(Class<? extends TestCase> testClass) {
209 addTest(new TestSuite(testClass));
  /external/junit/src/org/junit/experimental/theories/
Theories.java 21 import org.junit.runners.model.TestClass;
74 private TestClass fTestClass;
78 public TheoryAnchor(FrameworkMethod method, TestClass testClass) {
80 fTestClass= testClass;
83 private TestClass getTestClass() {
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestGrouping.java 162 for (Class<?> testClass : select(allClasses,
164 testClasses.add((Class<? extends TestCase>) testClass);
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 

Completed in 1519 milliseconds

1 2 3 45 6 7