mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
Refactors JUnit inspections by moving them to the JVM module and putting them in the `Jvm Languages/Test frameworks` group path. GitOrigin-RevId: 261325aeee56c7de6c39413c6bb76b7be0fb8727
9 lines
243 B
Java
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) {}
|
|
}
|