diff --git a/greeting/android/src/test/kotlin/CalculatorTestJavaHelper.kt b/greeting/android/src/test/kotlin/CalculatorTestJavaHelper.kt new file mode 100644 index 0000000..3ec214c --- /dev/null +++ b/greeting/android/src/test/kotlin/CalculatorTestJavaHelper.kt @@ -0,0 +1,8 @@ +import org.junit.runner.RunWith +import org.junit.runners.JUnit4 +import kotlin.test.Ignore + +// special class for running test within IDE +@Ignore +@RunWith(JUnit4::class) +class CalculatorTestJavaHelper : CalculatorTest()