diff options
author | Marvin Borner | 2018-05-19 20:11:35 +0200 |
---|---|---|
committer | Marvin Borner | 2018-05-19 20:11:35 +0200 |
commit | 7cd9f3cf3a86edc8425a2775d59cab6ff98d9dab (patch) | |
tree | 71d46b15d0b33171e4e36d755cfc18058d7ae940 /app/src/androidTest |
Initial design and functionality
Diffstat (limited to 'app/src/androidTest')
-rw-r--r-- | app/src/androidTest/java/me/marvinborner/myapplication/ExampleInstrumentedTest.java | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app/src/androidTest/java/me/marvinborner/myapplication/ExampleInstrumentedTest.java b/app/src/androidTest/java/me/marvinborner/myapplication/ExampleInstrumentedTest.java new file mode 100644 index 0000000..e2fe234 --- /dev/null +++ b/app/src/androidTest/java/me/marvinborner/myapplication/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package me.marvinborner.myapplication; + +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() { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getTargetContext(); + + assertEquals("me.marvinborner.myapplication", appContext.getPackageName()); + } +} |