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

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/tools/ctestfw/unicode/
testlog.h 34 testClass(callingTestClass), testName(callingTestName) {}
42 TestLog &testClass;
  /external/icu/android_icu4j/runner/src/main/java/android/icu/junit/
IcuTestParentRunner.java 24 * {@link org.junit.runners.model.TestClass} for the supplied {@code testClass} because that
25 * requires that the {@code testClass} has only a single constructor and at least one ICU test
34 private final Class<?> testClass;
36 IcuTestParentRunner(Class<?> testClass) throws InitializationError {
38 this.testClass = testClass;
43 return testClass.getName();
  /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...]
  /external/vogar/src/vogar/target/
CaliperRunner.java 32 private final Class<?> testClass;
35 public CaliperRunner(TargetMonitor monitor, boolean profile, Class<?> testClass,
39 this.testClass = testClass;
44 monitor.outcomeStarted(getClass(), testClass.getName());
46 .add(testClass.getName())
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
ClassMoveTest.java 45 final PsiClass testClass = myJavaFacade.findClass(oldQualifiedName, GlobalSearchScope.allScope(getProject()));
50 new MoveClassesOrPackagesProcessor(getProject(), new PsiClass[] {testClass},
ClassRenameTest.java 42 PsiClass testClass = myJavaFacade.findClass(oldQualifiedName, GlobalSearchScope.allScope(getProject()));
44 RenameProcessor processor = new RenameProcessor(getProject(), testClass, newName, false, false);
FieldRenameTest.java 40 PsiClass testClass = myJavaFacade.findClass(containingClass, GlobalSearchScope.allScope(getProject()));
42 PsiField field = testClass.findFieldByName(oldFieldName, false);
MethodRenameTest.java 40 PsiClass testClass = myJavaFacade.findClass(containingClass, GlobalSearchScope.allScope(getProject()));
42 PsiMethod method = testClass.findMethodsByName(oldMethodName, false)[0];
  /external/v8/build/android/pylib/utils/
proguard_test.py 14 def testClass(self):
  /external/vogar/test/vogar/target/
TestRunnerRule.java 54 Class<?> testClass = testRunnerProperties.testClass();
55 if (testClass != TestRunnerProperties.Default.class) {
56 testClassOrPackage = testClass.getName();
  /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 });

Completed in 192 milliseconds

1 2 3 4 5 6 7 8 91011>>