bye last java file
This commit is contained in:
parent
a19bb70254
commit
69b1e55ebd
2 changed files with 16 additions and 17 deletions
|
|
@ -1,17 +0,0 @@
|
|||
package com.deniscerri.ytdlnis;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* 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);
|
||||
}
|
||||
}
|
||||
16
app/src/test/java/com/deniscerri/ytdlnis/ExampleUnitTest.kt
Normal file
16
app/src/test/java/com/deniscerri/ytdlnis/ExampleUnitTest.kt
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
package com.deniscerri.ytdlnis
|
||||
|
||||
import org.junit.Assert
|
||||
import org.junit.Test
|
||||
|
||||
/**
|
||||
* Example local unit test, which will execute on the development machine (host).
|
||||
*
|
||||
* @see [Testing documentation](http://d.android.com/tools/testing)
|
||||
*/
|
||||
class ExampleUnitTest {
|
||||
@Test
|
||||
fun addition_isCorrect() {
|
||||
Assert.assertEquals(4, (2 + 2).toLong())
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue