Back to project page androidtestdebug.
The source code is released under:
MIT License
If you think the Android project androidtestdebug listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
import junit.framework.Test; import junit.framework.TestSuite; //www . j a va 2 s . com public class SampleSuite { public static Test suite() { TestSuite suite = new TestSuite("chapter1.java????????"); suite.addTestSuite(Sample1Test.class); suite.addTest(TestSuite.createTest(Sample2Test.class, "test?????????")); return suite; } }