Files
kotlin-fork/idea/resources/intentionDescriptions/KotlinCreateTestIntention/after.kt.template
T
Alexey Sedunov ad929a6577 Unit Test Tooling: Implement "Create Test" action
#KT-6472 In Progress
2015-10-11 01:13:41 +03:00

11 lines
93 B
Plaintext

class Foo {
fun foo() {
}
}
class FooTest : TestCase {
fun testFoo() {
}
}