Files
openide/jvm/jvm-analysis-kotlin-tests/testData/codeInspection/junit5MalformedParameterized/NoSourcesProvided.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

8 lines
219 B
Kotlin

package test
import org.junit.jupiter.params.ParameterizedTest
object PrivateRule {
@<warning descr="No sources are provided, the suite would be empty">ParameterizedTest</warning>
fun testWithParamsNoSource() {}
}