Merge pull request #1132 from kekkyojin/ignore_helpertest

Change HelperTest to JUnit4 and remove example test class
This commit is contained in:
Akinwale Ariwodola 2021-02-16 17:02:48 +01:00 committed by GitHub
commit d439260d69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 20 deletions

View file

@ -1,17 +0,0 @@
package io.lbry.browser;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
}

View file

@ -1,7 +1,5 @@
package io.lbry.browser.utils;
import junit.framework.TestCase;
public class HelperTest extends TestCase {
public class HelperTest {
}