From 7cd9f3cf3a86edc8425a2775d59cab6ff98d9dab Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 19 May 2018 20:11:35 +0200 Subject: Initial design and functionality --- .../myapplication/ExampleInstrumentedTest.java | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 app/src/androidTest/java/me/marvinborner/myapplication/ExampleInstrumentedTest.java (limited to 'app/src/androidTest') 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 Testing documentation + */ +@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()); + } +} -- cgit v1.2.3