blob: ee4ab438861ce30339e179b2f9a0481690a1df2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package cgeo.geocaching.test;
import android.test.suitebuilder.TestSuiteBuilder;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* The c:geo unit test suite. Based on http://marakana.com/tutorials/android/junit-test-example.html
* All tests below this package will get executed
* It can be used for unit testing which requires no application and/or context.
* For further informations have a look at http://developer.android.com/guide/topics/testing/testing_android.html
*/
public class CgeoTestSuite extends TestSuite {
public static Test suite() {
return new TestSuiteBuilder(CgeoTestSuite.class).includePackages("cgeo.geocaching").build();
}
}
|