blob: d2d282b53e77dc3cb7896da5c02b8be64136744a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package cgeo.geocaching.utils;
import junit.framework.TestCase;
public class ProcessUtilsTest extends TestCase {
public static void testIsInstalled() {
assertTrue(ProcessUtils.isInstalled("com.android.launcher"));
}
}
|