Change HelperTest to JUnit4 and remove example test class

This commit is contained in:
Javi Rueda 2021-02-12 01:28:22 +01:00
parent 6fa308ef96
commit 127d8052ca
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 {
}