16 lines
No EOL
358 B
Kotlin
16 lines
No EOL
358 B
Kotlin
package com.deniscerri.ytdl
|
|
|
|
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())
|
|
}
|
|
} |