FileDocCategorySizeDatePackage
AllTests.javaAPI DocAndroid 1.5 API1988Wed May 06 22:41:08 BST 2009com.example.android.apis

AllTests

public class AllTests extends TestSuite
A test suite containing all tests for ApiDemos. To run all suites found in this apk: $ adb shell am instrument -w \ com.example.android.apis.tests/android.test.InstrumentationTestRunner To run just this suite from the command line: $ adb shell am instrument -w \ -e class com.example.android.apis.AllTests \ com.example.android.apis.tests/android.test.InstrumentationTestRunner To run an individual test case, e.g. {@link com.example.android.apis.os.MorseCodeConverterTest}: $ adb shell am instrument -w \ -e class com.example.android.apis.os.MorseCodeConverterTest \ com.example.android.apis.tests/android.test.InstrumentationTestRunner To run an individual test, e.g. {@link com.example.android.apis.os.MorseCodeConverterTest#testCharacterS()}: $ adb shell am instrument -w \ -e class com.example.android.apis.os.MorseCodeConverterTest#testCharacterS \ com.example.android.apis.tests/android.test.InstrumentationTestRunner

Fields Summary
Constructors Summary
Methods Summary
public static junit.framework.Testsuite()

        return new TestSuiteBuilder(AllTests.class)
                .includeAllPackagesUnderHere()
                .build();