From 2bf5e9efde28cce8186b2cdf75d8fafb6c9125ad Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Sun, 9 Jul 2017 00:46:24 -0700 Subject: Clean up and optimize --- searchbar/build.gradle | 10 +-------- .../ca/allanwang/kau/ExampleInstrumentedTest.java | 26 ---------------------- .../java/ca/allanwang/kau/ExampleUnitTest.java | 17 -------------- 3 files changed, 1 insertion(+), 52 deletions(-) delete mode 100644 searchbar/src/androidTest/java/ca/allanwang/kau/ExampleInstrumentedTest.java delete mode 100644 searchbar/src/test/java/ca/allanwang/kau/ExampleUnitTest.java (limited to 'searchbar') diff --git a/searchbar/build.gradle b/searchbar/build.gradle index 78054b3..694e5a5 100644 --- a/searchbar/build.gradle +++ b/searchbar/build.gradle @@ -1,22 +1,14 @@ -apply from: '../android.gradle' +apply from: '../android-lib.gradle' android { resourcePrefix "kau_" } dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) - androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { - exclude group: 'com.android.support', module: 'support-annotations' - }) - testCompile 'junit:junit:4.12' compile project(':core-ui') compile project(':adapter') - compile "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN}" - testCompile "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN}" - } apply from: '../artifacts.gradle' diff --git a/searchbar/src/androidTest/java/ca/allanwang/kau/ExampleInstrumentedTest.java b/searchbar/src/androidTest/java/ca/allanwang/kau/ExampleInstrumentedTest.java deleted file mode 100644 index 58d0f29..0000000 --- a/searchbar/src/androidTest/java/ca/allanwang/kau/ExampleInstrumentedTest.java +++ /dev/null @@ -1,26 +0,0 @@ -package ca.allanwang.kau; - -import android.content.Context; -import android.support.test.InstrumentationRegistry; -import android.support.test.runner.AndroidJUnit4; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.assertEquals; - -/** - * Instrumentation test, which will execute on an Android device. - * - * @see Testing documentation - */ -@RunWith(AndroidJUnit4.class) -public class ExampleInstrumentedTest { - @Test - public void useAppContext() throws Exception { - // Context of the app under test. - Context appContext = InstrumentationRegistry.getTargetContext(); - - assertEquals("ca.allanwang.kau.test", appContext.getPackageName()); - } -} diff --git a/searchbar/src/test/java/ca/allanwang/kau/ExampleUnitTest.java b/searchbar/src/test/java/ca/allanwang/kau/ExampleUnitTest.java deleted file mode 100644 index a641a60..0000000 --- a/searchbar/src/test/java/ca/allanwang/kau/ExampleUnitTest.java +++ /dev/null @@ -1,17 +0,0 @@ -package ca.allanwang.kau; - -import org.junit.Test; - -import static org.junit.Assert.assertEquals; - -/** - * Example local unit test, which will execute on the development machine (host). - * - * @see Testing documentation - */ -public class ExampleUnitTest { - @Test - public void addition_isCorrect() throws Exception { - assertEquals(4, 2 + 2); - } -} \ No newline at end of file -- cgit v1.2.3