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

9 lines
243 B
Java

import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.MethodSource;
class KtMethodSourceUsage {
@ParameterizedTest
@MethodSource("SampleTest#squares")
void testSquares(int input, int expected) {}
}