summaryrefslogtreecommitdiff
path: root/src/androidTest
diff options
context:
space:
mode:
Diffstat (limited to 'src/androidTest')
-rw-r--r--src/androidTest/java/it/alessandroiezzi/commons/page/ExampleInstrumentedTest.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/androidTest/java/it/alessandroiezzi/commons/page/ExampleInstrumentedTest.java b/src/androidTest/java/it/alessandroiezzi/commons/page/ExampleInstrumentedTest.java
new file mode 100644
index 0000000..b88b024
--- /dev/null
+++ b/src/androidTest/java/it/alessandroiezzi/commons/page/ExampleInstrumentedTest.java
@@ -0,0 +1,45 @@
+/*
+ * Copyright (C) 2021-2022 Alessandro Iezzi <aiezzi AT alessandroiezzi PERIOD it>
+ *
+ * This file is part of TOP-TAB Android.
+ *
+ * TOP-TAB Android is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * TOP-TAB Android is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with TOP-TAB Android. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+package it.alessandroiezzi.commons.page;
+
+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("it.alessandroiezzi.commons.page.test", appContext.getPackageName());
+ }
+} \ No newline at end of file