aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/test/cgeoTestSuite.java
blob: 31a469e113b46ece880c1a2b3637903b7c2611c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cgeo.geocaching.test;

import junit.framework.Test;
import junit.framework.TestSuite;
import android.test.suitebuilder.TestSuiteBuilder;

/**
 * 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).includeAllPackagesUnderHere().build();
    }
}