1 /* 2 * Copyright 2017-2018 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() 12 check(a.x == 8) 13 } 14 }