Back to project page Sunshine.
The source code is released under:
MIT License
If you think the Android project Sunshine listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package me.kalehv.t.sunshine; /*from ww w. j a va2 s . c om*/ import android.test.suitebuilder.TestSuiteBuilder; import junit.framework.Test; /** * Created by harshadkale on 7/19/14. */ public class FullTestSuite { public static Test suite() { return new TestSuiteBuilder(FullTestSuite.class) .includeAllPackagesUnderHere().build(); } public FullTestSuite() { super(); } }