12 lines
251 B
Kotlin
12 lines
251 B
Kotlin
package org.tle.astrologylibrary
|
|
|
|
import org.junit.Assert.assertTrue
|
|
import org.junit.Test
|
|
|
|
class AndroidGreetingTest {
|
|
|
|
@Test
|
|
fun testExample() {
|
|
assertTrue("Check Android is mentioned", Greeting().greet().contains("Android"))
|
|
}
|
|
} |