FileDocCategorySizeDatePackage
FrameworkTests.javaAPI DocAndroid 1.5 API1039Wed May 06 22:42:02 BST 2009android.test

FrameworkTests

public class FrameworkTests extends Object
Tests that are loaded in the boot classpath along with the Android framework classes. This enables you to access package-private members in the framework classes; doing so is not possible when the test classes are loaded in an application classloader.

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

        TestSuite suite = new TestSuite(FrameworkTests.class.getName());

        suite.addTestSuite(MultipartTest.class);
        suite.addTestSuite(EventLogTest.class);
        suite.addTestSuite(EventLogFunctionalTest.class);
        suite.addTestSuite(LoggingPrintStreamTest.class);
        suite.addTestSuite(LockPatternKeyguardViewTest.class);

        return suite;