Remove placeholder tests

This commit is contained in:
Eugene Cheung 2018-04-30 18:28:38 -04:00
commit 44dd34db79
No known key found for this signature in database
GPG key ID: E1FD745328866B0A
3 changed files with 0 additions and 29 deletions

View file

@ -117,6 +117,5 @@ dependencies {
transitive = true
}
implementation 'com.google.code.gson:gson:2.8.2'
testImplementation 'junit:junit:4.12'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
}

View file

@ -1,13 +0,0 @@
package com.kabouzeid.gramophone;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}

View file

@ -1,15 +0,0 @@
package com.kabouzeid.gramophone;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
/**
* 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);
}
}