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 IntArithmeticTest {
8 
9     @Test
testIntnull10     fun testInt() {
11         val a = IntArithmetic()
12         a.doWork(1234)
13         assertEquals(1234, a.x)
14     }
15 }
16