From 744a2773f000a21b7dfd2a2e123547e146997313 Mon Sep 17 00:00:00 2001 From: Carlos Martinez Date: Sun, 2 Feb 2020 11:14:30 -0300 Subject: [PATCH] delete example tests --- .../ExampleInstrumentedTest.kt | 24 ------------------- .../friendlist_userlist/ExampleUnitTest.kt | 17 ------------- 2 files changed, 41 deletions(-) delete mode 100644 userlist/src/androidTest/java/com/hako/friendlist_userlist/ExampleInstrumentedTest.kt delete mode 100644 userlist/src/test/java/com/hako/friendlist_userlist/ExampleUnitTest.kt diff --git a/userlist/src/androidTest/java/com/hako/friendlist_userlist/ExampleInstrumentedTest.kt b/userlist/src/androidTest/java/com/hako/friendlist_userlist/ExampleInstrumentedTest.kt deleted file mode 100644 index fe782da..0000000 --- a/userlist/src/androidTest/java/com/hako/friendlist_userlist/ExampleInstrumentedTest.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.hako.friendlist_userlist - -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("com.hako.friendlist_userlist.test", appContext.packageName) - } -} diff --git a/userlist/src/test/java/com/hako/friendlist_userlist/ExampleUnitTest.kt b/userlist/src/test/java/com/hako/friendlist_userlist/ExampleUnitTest.kt deleted file mode 100644 index fc064f1..0000000 --- a/userlist/src/test/java/com/hako/friendlist_userlist/ExampleUnitTest.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.hako.friendlist_userlist - -import org.junit.Test - -import org.junit.Assert.* - -/** - * Example local unit test, which will execute on the development machine (host). - * - * See [testing documentation](http://d.android.com/tools/testing). - */ -class ExampleUnitTest { - @Test - fun addition_isCorrect() { - assertEquals(4, 2 + 2) - } -}