HomeSort by relevance Sort by last modified time
    Searched defs:testClass (Results 1 - 25 of 171) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/third_party/icu/source/tools/ctestfw/unicode/
testlog.h 34 testClass(callingTestClass), testName(callingTestName) {}
42 TestLog &testClass;
  /external/icu/icu4c/source/tools/ctestfw/unicode/
testlog.h 34 testClass(callingTestClass), testName(callingTestName) {}
42 TestLog &testClass;
  /external/mockito/src/org/mockito/
MockitoAnnotations.java 84 * Initializes objects annotated with Mockito annotations for given testClass:
89 public static void initMocks(Object testClass) {
90 if (testClass == null) {
91 throw new MockitoException("testClass cannot be null. For info how to use @Mock annotations see examples in javadoc for MockitoAnnotations class");
95 Class<?> clazz = testClass.getClass();
102 scanDeprecatedWay(annotationEngine, testClass, clazz);
108 annotationEngine.process(testClass.getClass(), testClass);
111 static void scanDeprecatedWay(AnnotationEngine annotationEngine, Object testClass, Class<?> clazz) {
115 processAnnotationDeprecatedWay(annotationEngine, testClass, field)
    [all...]
  /frameworks/base/test-runner/src/junit/runner/
LoadingTestCollector.java 24 Class testClass= classFromFile(classFileName);
25 return (testClass != null) && isTestClass(testClass);
42 boolean isTestClass(Class testClass) {
43 if (hasSuiteMethod(testClass))
45 if (Test.class.isAssignableFrom(testClass) &&
46 Modifier.isPublic(testClass.getModifiers()) &&
47 hasPublicConstructor(testClass))
52 boolean hasSuiteMethod(Class testClass) {
54 testClass.getMethod(BaseTestRunner.SUITE_METHODNAME, new Class[0])
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
TestBatik.java 30 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.core.alltests");
31 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestCrimson.java 31 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.core.alltests");
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestCrimsonAltConfig.java 31 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.core.alltests");
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestDOM4J.java 30 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.core.alltests");
31 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestDefaultLS.java 35 Class testClass =
39 testClass.getConstructor(
TestDefaultLSAltConfig.java 35 Class testClass =
39 testClass.getConstructor(
TestDefaultParser.java 29 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.core.alltests");
30 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestDefaultParserAltConfig.java 29 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.core.alltests");
30 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestGNUJAXP.java 31 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.core.alltests");
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestGNUJAXPAltConfig.java 31 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.core.alltests");
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestJTidy.java 30 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.core.alltests");
31 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestOracle.java 31 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.core.alltests");
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestOracleAltConfig.java 31 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.core.alltests");
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestXerces.java 31 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.core.alltests");
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestXercesAltConfig.java 31 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.core.alltests");
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
  /libcore/dom/src/test/java/org/w3c/domts/level1/html/
TestDefaultLS.java 35 Class testClass =
39 testClass.getConstructor(
TestDefaultLSAltConfig.java 35 Class testClass =
39 testClass.getConstructor(
TestXercesHTML.java 29 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.html.alltests");
30 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
TestBatik.java 30 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level2.core.alltests");
31 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestCrimson.java 31 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level2.core.alltests");
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestCrimsonAltConfig.java 31 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level2.core.alltests");
32 Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });

Completed in 246 milliseconds

1 2 3 4 5 6 7