Files
openide/jvm/jvm-analysis-kotlin-tests/testData/codeInspection/junit5MalformedParameterized/SuspCombFix.kt
Bart van Helvert 13cd01b4f8 [jvm] Move JUnit inspections to jvm module
Refactors JUnit inspections by moving them to the JVM module and putting them in the `Jvm Languages/Test frameworks` group path.

GitOrigin-RevId: 261325aeee56c7de6c39413c6bb76b7be0fb8727
2022-04-02 10:58:27 +00:00

20 lines
433 B
Kotlin

package test
import org.junit.jupiter.api.Test
import org.junit.jupiter.params.ParameterizedTest
import org.junit.jupiter.params.provider.MethodSource
import java.util.stream.Stream
import org.junit.jupiter.params.provider.ValueSource
object PrivateClassRule {
@ParameterizedTest
@MethodSource("parmeters")
@Test
fun testWithTestAnnotation() {}
@ValueSource()
@Test
fun testWithTestAnnotationNoParameterized() {}
}