diff options
Diffstat (limited to 'tests/src/cgeo/CGeoTestCase.java')
| -rw-r--r-- | tests/src/cgeo/CGeoTestCase.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/src/cgeo/CGeoTestCase.java b/tests/src/cgeo/CGeoTestCase.java new file mode 100644 index 0000000..31fde34 --- /dev/null +++ b/tests/src/cgeo/CGeoTestCase.java @@ -0,0 +1,19 @@ +package cgeo; + +import cgeo.geocaching.cgeoapplication; + +import android.test.ApplicationTestCase; + +public abstract class CGeoTestCase extends ApplicationTestCase<cgeoapplication> { + + public CGeoTestCase() { + super(cgeoapplication.class); + } + + @Override + protected void setUp() throws Exception { + super.setUp(); + createApplication(); + } + +} |
