SmartStepInto in top level functions. Add test for debugger

#KT-4737 Fixed
This commit is contained in:
Natalia Ukhorskaya
2014-03-28 11:48:39 +04:00
parent 4aa3dff2a2
commit 32a6205d81
39 changed files with 800 additions and 19 deletions
@@ -102,6 +102,7 @@ import org.jetbrains.jet.plugin.imports.AbstractOptimizeImportsTest
import org.jetbrains.jet.plugin.debugger.AbstractSmartStepIntoTest
import org.jetbrains.jet.plugin.stubs.AbstractStubBuilderTest
import org.jetbrains.jet.plugin.codeInsight.AbstractJetInspectionTest
import org.jetbrains.jet.plugin.debugger.AbstractKotlinSteppingTest
fun main(args: Array<String>) {
System.setProperty("java.awt.headless", "true")
@@ -540,6 +541,11 @@ fun main(args: Array<String>) {
model("debugger/smartStepInto")
}
testClass(javaClass<AbstractKotlinSteppingTest>()) {
model("debugger/tinyApp/src/stepInto", testMethod = "doStepIntoTest", testClassName = "StepInto")
model("debugger/tinyApp/src/stepInto", testMethod = "doSmartStepIntoTest", testClassName = "SmartStepInto")
}
testClass(javaClass<AbstractStubBuilderTest>()) {
model("stubs", extension = "kt")
}