KSLog/lib/src/commonTest/kotlin/project_group/LibraryTest.kt

15 lines
357 B
Kotlin
Raw Normal View History

2022-06-07 09:17:21 +00:00
/*
* This Kotlin source file was generated by the Gradle 'init' task.
*/
package project_group
import kotlin.test.Test
import kotlin.test.assertTrue
class LibraryTest {
@Test fun testSomeLibraryMethod() {
val classUnderTest = Library()
assertTrue(classUnderTest.someLibraryMethod(), "someLibraryMethod should return 'true'")
}
}