Skip to content

Commit 6bc63cf

Browse files
committed
Add LinuxX64 test
1 parent aa44461 commit 6bc63cf

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,15 @@ import kotlinx.coroutines.test.runTest
88
import kotlin.test.Test
99
import kotlin.test.assertEquals
1010

11-
class SystemPlatformProviderTestLinux {
11+
class SystemPlatformProviderLinuxX64Test {
1212
@Test
1313
fun testOsInfo() = runTest {
1414
val osInfo = PlatformProvider.System.osInfo()
1515
assertEquals(OsFamily.Linux, osInfo.family)
1616
}
17+
18+
@Test
19+
fun definitelyShouldFail() = runTest {
20+
assertEquals(1, 2)
21+
}
1722
}

0 commit comments

Comments
 (0)