From 88ce99d87889cdf953af611ef09d7a12b6d23747 Mon Sep 17 00:00:00 2001 From: Eddy Pedroni Date: Tue, 30 Dec 2025 10:13:11 +0100 Subject: Add Android app wrapper around web interface --- .../zeroxf7/solotool/ExampleInstrumentedTest.java | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 android/app/src/androidTest/java/com/zeroxf7/solotool/ExampleInstrumentedTest.java (limited to 'android/app/src/androidTest/java/com/zeroxf7') 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 Testing documentation + */ +@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 -- cgit v1.2.3