OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testClass
(Results
76 - 100
of
153
) sorted by null
1
2
3
4
5
6
7
/libcore/dom/src/test/java/org/w3c/domts/level3/ls/
TestOracle.java
43
Class
testClass
=
47
testClass
.getConstructor(
TestXerces.java
38
Class
testClass
= ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level3.ls.alltests");
39
Constructor testConstructor =
testClass
.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
/libcore/dom/src/test/java/org/w3c/domts/level3/validation/
TestBatik.java
36
Class
testClass
= ClassLoader.getSystemClassLoader().loadClass(
38
Constructor testConstructor =
testClass
TestDefaultLS.java
41
Class
testClass
=
45
testClass
.getConstructor(
TestDefaultLSAltConfig.java
41
Class
testClass
=
45
testClass
.getConstructor(
TestDefaultParser.java
39
Class
testClass
= ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level3.validation.alltests");
40
Constructor testConstructor =
testClass
.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestDefaultParserAltConfig.java
42
Class
testClass
= ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level3.validation.alltests");
43
Constructor testConstructor =
testClass
.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestOracle.java
40
Class
testClass
=
44
testClass
.getConstructor(
TestOracleAltConfig.java
39
Class
testClass
=
43
testClass
.getConstructor(
/libcore/dom/src/test/java/org/w3c/domts/level3/xpath/
TestBatik.java
36
Class
testClass
= ClassLoader.getSystemClassLoader().loadClass(
38
Constructor testConstructor =
testClass
TestDefaultLS.java
41
Class
testClass
=
45
testClass
.getConstructor(
TestDefaultLSAltConfig.java
41
Class
testClass
=
45
testClass
.getConstructor(
TestDefaultParser.java
39
Class
testClass
= ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level3.xpath.alltests");
40
Constructor testConstructor =
testClass
.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestDefaultParserAltConfig.java
42
Class
testClass
= ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level3.xpath.alltests");
43
Constructor testConstructor =
testClass
.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestXalan.java
31
Class
testClass
= ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level3.xpath.alltests");
32
Constructor testConstructor =
testClass
.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
TestXalanAltConfig.java
31
Class
testClass
= ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level3.xpath.alltests");
32
Constructor testConstructor =
testClass
.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
/cts/tools/utils/
CollectAllTests.java
186
Map<String,
TestClass
> testCases = new LinkedHashMap<String,
TestClass
>();
242
for (Iterator<
TestClass
> iterator = testCases.values().iterator(); iterator.hasNext();) {
243
TestClass
type = iterator.next();
317
private static String getKnownFailure(final Class<? extends TestCase>
testClass
,
319
return getAnnotation(
testClass
, testName, KNOWN_FAILURE);
322
private static boolean isKnownFailure(final Class<? extends TestCase>
testClass
,
324
return getAnnotation(
testClass
, testName, KNOWN_FAILURE) != null;
327
private static boolean isBrokenTest(final Class<? extends TestCase>
testClass
,
329
return getAnnotation(
testClass
, testName, BROKEN_TEST) != null
[
all
...]
/frameworks/base/test-runner/src/android/test/
TestCaseUtil.java
95
private static Test invokeSuiteMethodIfPossible(Class
testClass
,
98
Method suiteMethod =
testClass
.getMethod(
107
&& !seen.contains(
testClass
)) {
108
seen.add(
testClass
);
155
public static TestSuite createTestSuite(Class<? extends Test>
testClass
)
158
Test test = invokeSuiteMethodIfPossible(
testClass
,
161
return new TestSuite(
testClass
);
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
JarHostTest.java
264
Class<?>
testClass
= loadClass(className);
265
if (
testClass
== null) {
268
if (TestCase.class.isAssignableFrom(
testClass
)) {
269
TestCase testCase = (TestCase)
testClass
.newInstance();
272
} else if (Test.class.isAssignableFrom(
testClass
)) {
273
Test test = (Test)
testClass
.newInstance();
319
Class<?>
testClass
= cl.loadClass(className);
320
return
testClass
;
/external/junit/src/org/junit/internal/runners/
ClassRoadie.java
21
private
TestClass
fTestClass;
25
public ClassRoadie(RunNotifier notifier,
TestClass
testClass
,
28
fTestClass=
testClass
;
TestMethod.java
22
private
TestClass
fTestClass;
24
public TestMethod(Method method,
TestClass
testClass
) {
26
fTestClass=
testClass
;
/external/junit/src/org/junit/experimental/theories/internal/
Assignments.java
15
import org.junit.runners.model.
TestClass
;
26
private final
TestClass
fClass;
29
List<ParameterSignature> unassigned,
TestClass
testClass
) {
32
fClass=
testClass
;
40
TestClass
testClass
) throws Exception {
42
signatures= ParameterSignature.signatures(
testClass
46
signatures,
testClass
);
/external/junit/src/org/junit/runner/
Description.java
69
* Create a <code>Description</code> named after <code>
testClass
</code>
70
* @param
testClass
A {@link Class} containing tests
71
* @return a <code>Description</code> of <code>
testClass
</code>
73
public static Description createSuiteDescription(Class<?>
testClass
) {
74
return new Description(
testClass
.getName(),
testClass
.getAnnotations());
/external/junit/src/org/junit/runners/
Parameterized.java
18
import org.junit.runners.model.
TestClass
;
147
private List<Object[]> getParametersList(
TestClass
klass)
153
private FrameworkMethod getParametersMethod(
TestClass
testClass
)
155
List<FrameworkMethod> methods=
testClass
164
+
testClass
.getName());
/external/junit/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);
Completed in 760 milliseconds
1
2
3
4
5
6
7