Searched defs:testClass (Results 1 - 6 of 6) sorted by relevance

/external/icu4c/tools/ctestfw/unicode/
H A Dtestlog.h34 testClass(callingTestClass), testName(callingTestName) {}
42 TestLog &testClass; member in class:IcuTestErrorCode
/external/junit/src/junit/runner/
H A DLoadingTestCollector.java25 Class testClass= classFromFile(classFileName);
26 return (testClass != null) && isTestClass(testClass);
43 boolean isTestClass(Class testClass) { argument
44 if (hasSuiteMethod(testClass))
46 if (Test.class.isAssignableFrom(testClass) &&
47 Modifier.isPublic(testClass.getModifiers()) &&
48 hasPublicConstructor(testClass))
53 boolean hasSuiteMethod(Class testClass) { argument
55 testClass
62 hasPublicConstructor(Class testClass) argument
[all...]
/external/junit/src/junit/framework/
H A DTestSuite.java192 public void addTestSuite(Class testClass) { argument
193 addTest(new TestSuite(testClass));
/external/junit/src/junit/textui/
H A DTestRunner.java61 static public void run(Class testClass) { argument
62 run(new TestSuite(testClass));
192 Class testClass= loadSuiteClass(testCase);
193 Test test= TestSuite.createTest(testClass, method);
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
H A DTestObject.cpp41 static NPClass testClass = { variable
59 return &testClass;
179 testObject->testObject = browser->createobject(0, &testClass);
/external/icu4c/test/intltest/
H A Duobjtest.cpp64 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, function in class:UObjectTest

Completed in 119 milliseconds