mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
17 lines
349 B
Kotlin
17 lines
349 B
Kotlin
package test
|
|
|
|
import org.junit.jupiter.params.ParameterizedTest
|
|
import org.junit.jupiter.params.provider.MethodSource
|
|
import java.util.stream.Stream
|
|
|
|
object PrivateClassRule {
|
|
@ParameterizedTest
|
|
@MethodSource("squares")
|
|
fun foo() {}
|
|
|
|
companion object {
|
|
fun squares(): Stream<Int?>? {
|
|
return null
|
|
}
|
|
}
|
|
} |