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

import static org.assertj.core.api.Assertions.assertThat;

import android.os.Environment;

import junit.framework.TestCase;

public class EmulatorStateTest extends TestCase {

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