bye last java file

This commit is contained in:
deniscerri 2023-03-13 18:43:52 +01:00
parent a19bb70254
commit 69b1e55ebd
No known key found for this signature in database
GPG key ID: 95C43D517D830350
2 changed files with 16 additions and 17 deletions

View file

@ -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);
}
}

View 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())
}
}