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.extensions.TestSetup; import junit.framework.Test; import junit.framework.TestSuite; //w w w.j a v a2 s. c o m public class ??????????????? extends TestSuite { public static Test suite() { return new TestSetup(new TestSuite(??????2.class)) { protected void setUp() { System.out.println("????"); } protected void tearDown() { System.out.println("????"); } }; } }