From 4f8bf649f7080e356d08645c2ff1cdfd0282fef9 Mon Sep 17 00:00:00 2001 From: tibbi Date: Sun, 13 Nov 2016 23:30:32 +0100 Subject: [PATCH] remove the testing related things --- app/build.gradle | 2 -- .../simplemobiletools/notes/ApplicationTest.java | 13 ------------- .../simplemobiletools/com/ExampleUnitTest.java | 15 --------------- 3 files changed, 30 deletions(-) delete mode 100644 app/src/androidTest/java/com/simplemobiletools/notes/ApplicationTest.java delete mode 100644 app/src/test/java/notes/simplemobiletools/com/ExampleUnitTest.java diff --git a/app/build.gradle b/app/build.gradle index ca423a69..8f5f6c6d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -33,8 +33,6 @@ android { } dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) - testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.4.0' compile 'com.jakewharton:butterknife:8.0.1' compile 'com.github.yukuku:ambilwarna:2.0.1' diff --git a/app/src/androidTest/java/com/simplemobiletools/notes/ApplicationTest.java b/app/src/androidTest/java/com/simplemobiletools/notes/ApplicationTest.java deleted file mode 100644 index fe32db30..00000000 --- a/app/src/androidTest/java/com/simplemobiletools/notes/ApplicationTest.java +++ /dev/null @@ -1,13 +0,0 @@ -package com.simplemobiletools.notes; - -import android.app.Application; -import android.test.ApplicationTestCase; - -/** - * Testing Fundamentals - */ -public class ApplicationTest extends ApplicationTestCase { - public ApplicationTest() { - super(Application.class); - } -} \ No newline at end of file diff --git a/app/src/test/java/notes/simplemobiletools/com/ExampleUnitTest.java b/app/src/test/java/notes/simplemobiletools/com/ExampleUnitTest.java deleted file mode 100644 index e5aa9446..00000000 --- a/app/src/test/java/notes/simplemobiletools/com/ExampleUnitTest.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.simplemobiletools.notes; - -import org.junit.Test; - -import static org.junit.Assert.*; - -/** - * To work on unit tests, switch the Test Artifact in the Build Variants view. - */ -public class ExampleUnitTest { - @Test - public void addition_isCorrect() throws Exception { - assertEquals(4, 2 + 2); - } -} \ No newline at end of file