Files
kotlin-fork/libraries/stdlib/test/language/EscapedTestNamesTest.kt
T
Ilya Gorbunov c5a208f3eb Rearrange stdlib unit tests across packages.
Rearrange JS stdlib unit tests.
2016-06-18 16:50:32 +03:00

17 lines
305 B
Kotlin

package test.language
import org.junit.Test as test
import kotlin.test.*
class EscapedTestNamesTest {
@test fun `strings equal`() {
val actual = "abc"
assertEquals("abc", actual)
}
@test fun `numbers equal`() {
val actual = 5
assertEquals(5, actual)
}
}