1 /*
2  * Copyright 2016-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3  */
4 
5 import kotlin.test.*
6 
7 class ArithmeticTest {
8     @Test
testIntnull9     fun testInt() {
10         val a = IntArithmetic()
11         a.doWork(1234)
12         assertEquals(1234, a.x)
13     }
14 }
15