aboutsummaryrefslogtreecommitdiffstats
path: root/android/app/src/androidTest
diff options
context:
space:
mode:
authorEddy Pedroni <epedroni@pm.me>2025-12-30 10:13:11 +0100
committerEddy Pedroni <epedroni@pm.me>2025-12-30 10:13:11 +0100
commit88ce99d87889cdf953af611ef09d7a12b6d23747 (patch)
treee998849e710adaf1da5410096f1b3408784658d4 /android/app/src/androidTest
parentc77a8b5fb6a86dae2c9a97796067a5740e112a0d (diff)
Add Android app wrapper around web interface
Diffstat (limited to 'android/app/src/androidTest')
-rw-r--r--android/app/src/androidTest/java/com/zeroxf7/solotool/ExampleInstrumentedTest.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/android/app/src/androidTest/java/com/zeroxf7/solotool/ExampleInstrumentedTest.java b/android/app/src/androidTest/java/com/zeroxf7/solotool/ExampleInstrumentedTest.java
new file mode 100644
index 0000000..4c469aa
--- /dev/null
+++ b/android/app/src/androidTest/java/com/zeroxf7/solotool/ExampleInstrumentedTest.java
@@ -0,0 +1,26 @@
+package com.zeroxf7.solotool;
+
+import android.content.Context;
+
+import androidx.test.platform.app.InstrumentationRegistry;
+import androidx.test.ext.junit.runners.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.getInstrumentation().getTargetContext();
+ assertEquals("com.zeroxf7.solotool", appContext.getPackageName());
+ }
+} \ No newline at end of file