summaryrefslogtreecommitdiff
path: root/examples/llama.android/llama/src/androidTest/java/android
diff options
context:
space:
mode:
authorElton Kola <eltonkola@gmail.com>2024-05-14 03:30:30 -0400
committerGitHub <noreply@github.com>2024-05-14 17:30:30 +1000
commitefc8f767c8c8c749a245dd96ad4e2f37c164b54c (patch)
tree4c2910c9f7b3fcd27fbc1d04dd5188be962a8a5d /examples/llama.android/llama/src/androidTest/java/android
parente0f556186b6e1f2b7032a1479edf5e89e2b1bd86 (diff)
move ndk code to a new library (#6951)
Diffstat (limited to 'examples/llama.android/llama/src/androidTest/java/android')
-rw-r--r--examples/llama.android/llama/src/androidTest/java/android/llama/cpp/ExampleInstrumentedTest.kt24
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/llama.android/llama/src/androidTest/java/android/llama/cpp/ExampleInstrumentedTest.kt b/examples/llama.android/llama/src/androidTest/java/android/llama/cpp/ExampleInstrumentedTest.kt
new file mode 100644
index 00000000..05d6ab5d
--- /dev/null
+++ b/examples/llama.android/llama/src/androidTest/java/android/llama/cpp/ExampleInstrumentedTest.kt
@@ -0,0 +1,24 @@
+package android.llama.cpp
+
+import androidx.test.platform.app.InstrumentationRegistry
+import androidx.test.ext.junit.runners.AndroidJUnit4
+
+import org.junit.Test
+import org.junit.runner.RunWith
+
+import org.junit.Assert.*
+
+/**
+ * Instrumented test, which will execute on an Android device.
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+@RunWith(AndroidJUnit4::class)
+class ExampleInstrumentedTest {
+ @Test
+ fun useAppContext() {
+ // Context of the app under test.
+ val appContext = InstrumentationRegistry.getInstrumentation().targetContext
+ assertEquals("android.llama.cpp.test", appContext.packageName)
+ }
+}