aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/test/cgeoTestSuite.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/cgeo/geocaching/test/cgeoTestSuite.java')
-rw-r--r--tests/src/cgeo/geocaching/test/cgeoTestSuite.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/src/cgeo/geocaching/test/cgeoTestSuite.java b/tests/src/cgeo/geocaching/test/cgeoTestSuite.java
deleted file mode 100644
index 998bfc4..0000000
--- a/tests/src/cgeo/geocaching/test/cgeoTestSuite.java
+++ /dev/null
@@ -1,19 +0,0 @@
-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();
- }
-}