mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
11 lines
439 B
Plaintext
Vendored
11 lines
439 B
Plaintext
Vendored
// ACTION_CLASS: org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateTestSupportActionBase$Data
|
|
// CONFIGURE_LIBRARY: TestNG@plugins/testng/lib/testng.jar
|
|
import org.testng.annotations.DataProvider
|
|
import org.testng.annotations.Test
|
|
|
|
@Test class A {
|
|
@DataProvider(name = "name")
|
|
fun name(): Array<Array<Any>> {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
} |