mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
11 lines
300 B
Kotlin
Vendored
11 lines
300 B
Kotlin
Vendored
// ACTION_CLASS: org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateTestSupportActionBase$SetUp
|
|
// CONFIGURE_LIBRARY: JUnit@lib/junit-4.12.jar
|
|
// TEST_FRAMEWORK: JUnit4
|
|
import org.junit.Before
|
|
|
|
class A {<caret>
|
|
@Before
|
|
fun setUp() {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
} |