Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
native
/
native.tests
/
testData
/
samples
/
regular_simple.kt
blob: 60fc838669ae3a355408c182934e1a9533968904 [
file
]
import
kotlin
.
test
.*
@Test
fun addition
()
{
assertEquals
(
42
,
40
+
2
)
}
@Test
fun multiplication
()
{
assertEquals
(
42
,
21
*
2
)
}
@Test
fun subtraction
()
{
assertEquals
(
42
,
50
-
8
)
}
@Test
fun division
()
{
assertEquals
(
42
,
126
/
3
)
}