diff options
author | 2022-11-30 16:10:25 +0100 | |
---|---|---|
committer | 2022-11-30 16:10:25 +0100 | |
commit | 46bed7c28a5df7add8f52730d87712bde13e29c5 (patch) | |
tree | 151383db4c3b4e23e08027c6ea5af1082511e1d0 /src/androidTest | |
parent | 3ceced8cb403d616444afc44717675f251d9c59e (diff) | |
download | commons-page-46bed7c28a5df7add8f52730d87712bde13e29c5.tar.gz commons-page-46bed7c28a5df7add8f52730d87712bde13e29c5.zip |
Add whole directory
Diffstat (limited to 'src/androidTest')
-rw-r--r-- | src/androidTest/java/it/alessandroiezzi/commons/page/ExampleInstrumentedTest.java | 45 |
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 |