Files
kotlin/idea/testData/codeInsight/generate/testFrameworkSupport/jUnit4/setUpExists.kt

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()
}
}