Searched refs:TestCase (Results 1 - 25 of 249) sorted by relevance

12345678910

/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/constructor/
H A DProtectedConstructorTest.java19 import junit.framework.TestCase;
24 public class ProtectedConstructorTest extends TestCase {
H A DPublicConstructorTest.java19 import junit.framework.TestCase;
24 public class PublicConstructorTest extends TestCase {
H A DNoPublicConstructorTest.java19 import junit.framework.TestCase;
22 * A {@link TestCase} which should not be loaded since it has non-public constructors with no args.
24 public class NoPublicConstructorTest extends TestCase {
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/nested/
H A DLevel1Test.java19 import junit.framework.TestCase;
21 public class Level1Test extends TestCase {
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/nested/nested/
H A DLevel2Test.java19 import junit.framework.TestCase;
21 public class Level2Test extends TestCase {
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/simple/
H A DAnotherSimpleTest.java19 import junit.framework.TestCase;
21 public class AnotherSimpleTest extends TestCase {
H A DSimpleTest.java19 import junit.framework.TestCase;
21 public class SimpleTest extends TestCase {
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/smoke/
H A DNonSmokeTest.java19 import junit.framework.TestCase;
21 public class NonSmokeTest extends TestCase {
H A DSmokeTest.java20 import junit.framework.TestCase;
23 public class SmokeTest extends TestCase {
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/subclass/
H A DSuperclassTest.java19 import junit.framework.TestCase;
21 public abstract class SuperclassTest extends TestCase {
/frameworks/base/core/tests/hosttests/test-apps/ExternalLocAllPermsTestApp/src/com/android/framework/externallocallpermstestapp/
H A DExternalLocAllPermsTest.java21 import junit.framework.TestCase;
24 public class ExternalLocAllPermsTest extends TestCase {
/frameworks/base/test-runner/src/android/test/
H A DNoExecTestResult.java18 import junit.framework.TestCase;
35 protected void run(final TestCase test) {
H A DTestCase.java34 public interface TestCase extends Runnable interface in inherits:Runnable
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/error/
H A DErrorTest.java19 import junit.framework.TestCase;
21 public class ErrorTest extends TestCase {
H A DFailingTest.java19 import junit.framework.TestCase;
21 public class FailingTest extends TestCase {
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/suppress/
H A DSuppressedTest.java21 import junit.framework.TestCase;
24 public class SuppressedTest extends TestCase {
H A DPartiallySuppressedTest.java21 import junit.framework.TestCase;
23 public class PartiallySuppressedTest extends TestCase {
/frameworks/base/core/tests/coretests/src/android/os/
H A DVintfObjectTest.java20 import junit.framework.TestCase;
22 public class VintfObjectTest extends TestCase {
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DHexDumpTest.java19 import junit.framework.TestCase;
21 public final class HexDumpTest extends TestCase {
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/
H A DOuterTest.java21 import junit.framework.TestCase;
24 public class OuterTest extends TestCase {
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/annotation/
H A DHasClassAnnotationTest.java20 import junit.framework.TestCase;
24 public class HasClassAnnotationTest extends TestCase {
37 Class<? extends TestCase> aClass,
46 static class SmokeTestExample extends TestCase {
52 static class NonSmokeTestExample extends TestCase {
H A DHasMethodAnnotationTest.java20 import junit.framework.TestCase;
26 public class HasMethodAnnotationTest extends TestCase {
38 private boolean methodHasAnnotation(Class<? extends TestCase> aClass,
47 static class AnnotatedMethodExample extends TestCase {
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestGrouping.java24 import junit.framework.TestCase;
51 SortedSet<Class<? extends TestCase>> testCaseClasses;
53 public static final Comparator<Class<? extends TestCase>> SORT_BY_SIMPLE_NAME
56 public static final Comparator<Class<? extends TestCase>> SORT_BY_FULLY_QUALIFIED_NAME
62 public TestGrouping(Comparator<Class<? extends TestCase>> comparator) {
63 testCaseClasses = new TreeSet<Class<? extends TestCase>>(comparator);
72 for (Class<? extends TestCase> testCase : testCaseClasses) {
80 protected List<Method> getTestMethods(Class<? extends TestCase> testCaseClass) {
85 SortedSet<Class<? extends TestCase>> getTestCaseClasses() {
117 List<Class<? extends TestCase>> addedClasse
[all...]
H A DTestMethod.java19 import junit.framework.TestCase;
27 * Represents a test to be run. Can be constructed without instantiating the TestCase or even
38 private final Class<? extends TestCase> enclosingClass;
40 public TestMethod(Method method, Class<? extends TestCase> enclosingClass) {
44 public TestMethod(String methodName, Class<? extends TestCase> enclosingClass) {
50 public TestMethod(TestCase testCase) {
71 public Class<? extends TestCase> getEnclosingClass() {
75 public TestCase createTest()
81 private TestCase instantiateTest(Class testCaseClass, String testName)
91 TestCase tes
[all...]
/frameworks/base/core/tests/coretests/src/android/graphics/
H A DThreadBitmapTest.java21 import junit.framework.TestCase;
23 public class ThreadBitmapTest extends TestCase {

Completed in 295 milliseconds

12345678910