From 46bed7c28a5df7add8f52730d87712bde13e29c5 Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Wed, 30 Nov 2022 16:10:25 +0100 Subject: Add whole directory --- .../commons/page/ExampleInstrumentedTest.java | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 src/androidTest/java/it/alessandroiezzi/commons/page/ExampleInstrumentedTest.java (limited to 'src/androidTest') 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 + * + * 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 . + */ + +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 Testing documentation + */ +@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 -- cgit v1.2.3