mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +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
20 lines
433 B
Kotlin
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() {}
|
|
} |