aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/test/EmulatorStateTest.java
blob: 634660837fe80312425d379f4a044823dcb5747b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package cgeo.geocaching.test;

import android.os.Environment;

import junit.framework.TestCase;

public class EmulatorStateTest extends TestCase {

    public static void testWritableMedia() {
        // check the emulator running our tests
        assertTrue(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED));
    }
}