12 lines
245 B
Kotlin
12 lines
245 B
Kotlin
package org.tle.astrologylibrary
|
|
|
|
import kotlin.test.Test
|
|
import kotlin.test.assertTrue
|
|
|
|
class CommonGreetingTest {
|
|
|
|
@Test
|
|
fun testExample() {
|
|
assertTrue(Greeting().greet().contains("Hello"), "Check 'Hello' is mentioned")
|
|
}
|
|
} |