summaryrefslogtreecommitdiff
path: root/llama.cpp/examples/llama.android/lib/src/test/java/android/llama
diff options
context:
space:
mode:
Diffstat (limited to 'llama.cpp/examples/llama.android/lib/src/test/java/android/llama')
-rw-r--r--llama.cpp/examples/llama.android/lib/src/test/java/android/llama/cpp/ExampleUnitTest.kt17
1 files changed, 17 insertions, 0 deletions
diff --git a/llama.cpp/examples/llama.android/lib/src/test/java/android/llama/cpp/ExampleUnitTest.kt b/llama.cpp/examples/llama.android/lib/src/test/java/android/llama/cpp/ExampleUnitTest.kt
new file mode 100644
index 0000000..cbbb974
--- /dev/null
+++ b/llama.cpp/examples/llama.android/lib/src/test/java/android/llama/cpp/ExampleUnitTest.kt
@@ -0,0 +1,17 @@
1package android.llama.cpp
2
3import org.junit.Test
4
5import org.junit.Assert.*
6
7/**
8 * Example local unit test, which will execute on the development machine (host).
9 *
10 * See [testing documentation](http://d.android.com/tools/testing).
11 */
12class ExampleUnitTest {
13 @Test
14 fun addition_isCorrect() {
15 assertEquals(4, 2 + 2)
16 }
17}