mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 00:21:35 +00:00
12 lines
370 B
Kotlin
Vendored
12 lines
370 B
Kotlin
Vendored
// ACTION_CLASS: org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateTestSupportActionBase$SetUp
|
|
// NOT_APPLICABLE
|
|
// CONFIGURE_LIBRARY: TestNG@plugins/testng/lib/testng.jar
|
|
import org.testng.annotations.BeforeMethod
|
|
import org.testng.annotations.Test
|
|
|
|
@Test class A {<caret>
|
|
@BeforeMethod
|
|
fun setUp() {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
} |