1 package android.test; 2 3 import com.android.internal.os.LoggingPrintStreamTest; 4 import android.util.EventLogFunctionalTest; 5 import android.util.EventLogTest; 6 import junit.framework.TestSuite; 7 import com.android.internal.http.multipart.MultipartTest; 8 import com.android.internal.policy.impl.LockPatternKeyguardViewTest; 9 10 /** 11 * Tests that are loaded in the boot classpath along with the Android framework 12 * classes. This enables you to access package-private members in the framework 13 * classes; doing so is not possible when the test classes are loaded in an 14 * application classloader. 15 */ 16 public class FrameworkTests { suite()17 public static TestSuite suite() { 18 TestSuite suite = new TestSuite(FrameworkTests.class.getName()); 19 20 suite.addTestSuite(MultipartTest.class); 21 suite.addTestSuite(EventLogTest.class); 22 suite.addTestSuite(EventLogFunctionalTest.class); 23 suite.addTestSuite(LoggingPrintStreamTest.class); 24 suite.addTestSuite(LockPatternKeyguardViewTest.class); 25 26 return suite; 27 } 28 } 29