-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasicCalculatorTest.kt
More file actions
28 lines (24 loc) · 986 Bytes
/
BasicCalculatorTest.kt
File metadata and controls
28 lines (24 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package ru.romanow.medium
import org.assertj.core.api.Assertions.assertThat
import org.junit.jupiter.api.extension.ExtensionContext
import org.junit.jupiter.params.ParameterizedTest
import org.junit.jupiter.params.provider.Arguments
import org.junit.jupiter.params.provider.ArgumentsProvider
import org.junit.jupiter.params.provider.ArgumentsSource
import java.util.stream.Stream
class BasicCalculatorTest {
@ArgumentsSource(ValueProvider::class)
@ParameterizedTest(name = "#{index} – expression {0} result is {1}")
fun calculate(s: String, result: Int) {
val obj = BasicCalculator()
assertThat(obj.calculate(s)).isEqualTo(result)
}
internal class ValueProvider : ArgumentsProvider {
override fun provideArguments(context: ExtensionContext): Stream<Arguments> =
Stream.of(
Arguments.of("3+2*2", 7),
Arguments.of(" 3/2 ", 1),
Arguments.of(" 3+5 / 2 ", 5)
)
}
}