aboutsummaryrefslogtreecommitdiff
path: root/app/src/androidTest/java
diff options
context:
space:
mode:
authorTrumeet <liangyuteng12345@gmail.com>2017-08-03 15:12:06 +0800
committerTrumeet <liangyuteng12345@gmail.com>2017-08-03 15:12:08 +0800
commit019522cc93d947b5075ca90547b9e13f08787739 (patch)
tree18096ab2a5f678f5d2b4f3a810966c2bf9defe67 /app/src/androidTest/java
downloadSetupWizardLibCompat-019522cc93d947b5075ca90547b9e13f08787739.tar
SetupWizardLibCompat-019522cc93d947b5075ca90547b9e13f08787739.tar.gz
SetupWizardLibCompat-019522cc93d947b5075ca90547b9e13f08787739.tar.bz2
SetupWizardLibCompat-019522cc93d947b5075ca90547b9e13f08787739.zip
First Commit0.1
Diffstat (limited to 'app/src/androidTest/java')
-rw-r--r--app/src/androidTest/java/top/trumeet/snippet/setupwizardlibcompat/ExampleInstrumentedTest.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/app/src/androidTest/java/top/trumeet/snippet/setupwizardlibcompat/ExampleInstrumentedTest.java b/app/src/androidTest/java/top/trumeet/snippet/setupwizardlibcompat/ExampleInstrumentedTest.java
new file mode 100644
index 0000000..9ee7f03
--- /dev/null
+++ b/app/src/androidTest/java/top/trumeet/snippet/setupwizardlibcompat/ExampleInstrumentedTest.java
@@ -0,0 +1,26 @@
+package top.trumeet.snippet.setupwizardlibcompat;
+
+import android.content.Context;
+import android.support.test.InstrumentationRegistry;
+import android.support.test.runner.AndroidJUnit4;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+
+import static org.junit.Assert.*;
+
+/**
+ * Instrumented test, which will execute on an Android device.
+ *
+ * @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
+ */
+@RunWith(AndroidJUnit4.class)
+public class ExampleInstrumentedTest {
+ @Test
+ public void useAppContext() throws Exception {
+ // Context of the app under test.
+ Context appContext = InstrumentationRegistry.getTargetContext();
+
+ assertEquals("top.trumeet.snippet.setupwizardlibcompat", appContext.getPackageName());
+ }
+}