LibreTube/app/src/test/java/com/github/libretube/ExampleUnitTest.kt

17 lines
355 B
Kotlin
Raw Normal View History

2022-02-01 21:22:06 +05:30
package com.github.libretube
2021-12-09 18:01:40 +05:30
2022-05-21 13:32:04 +05:30
import org.junit.Assert.assertEquals
2022-05-20 03:52:10 +05:30
import org.junit.Test
2021-12-09 18:01:40 +05:30
/**
* 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() {
assertEquals(4, 2 + 2)
}
2022-05-20 03:52:10 +05:30
}