@Test
fun testAddition() {
val calculator = Calculator()
val result = calculator.add(2, 3)
assertEquals(5, result)
}
@Before
fun setUp() {
}
@After
fun tearDown() {
}
@Ignore
@Test
fun testDivision() {
}
dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-test")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
}