diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2024-07-19 23:49:36 +0200 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2024-07-19 23:49:36 +0200 |
| commit | 2b7c14f2b68a26cba893855cd1a142328888bb13 (patch) | |
| tree | 6db090a2e4aa238ccda589a5fe899f459fbafea4 /android/app/src/androidTest/java/eu/jopek/dingdongmail/ExampleInstrumentedTest.kt | |
| download | ding-dong-mail-2b7c14f2b68a26cba893855cd1a142328888bb13.tar.gz ding-dong-mail-2b7c14f2b68a26cba893855cd1a142328888bb13.tar.zst ding-dong-mail-2b7c14f2b68a26cba893855cd1a142328888bb13.zip | |
Initial commit
Android app works, but Android says it uses much more battery than
ntfy.sh, which should never happen
goimapnotify works
Logo is awesome <3
There are problems with constant working, presumably after restarts.
Diffstat (limited to 'android/app/src/androidTest/java/eu/jopek/dingdongmail/ExampleInstrumentedTest.kt')
| -rw-r--r-- | android/app/src/androidTest/java/eu/jopek/dingdongmail/ExampleInstrumentedTest.kt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/android/app/src/androidTest/java/eu/jopek/dingdongmail/ExampleInstrumentedTest.kt b/android/app/src/androidTest/java/eu/jopek/dingdongmail/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..8480519 --- /dev/null +++ b/android/app/src/androidTest/java/eu/jopek/dingdongmail/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package eu.jopek.dingdongmail + +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("eu.jopek.dingdongmail", appContext.packageName) + } +}
\ No newline at end of file |
