Add some more test on filters for debugger

This commit is contained in:
Natalia Ukhorskaya
2014-08-29 15:01:39 +04:00
parent 5c0c22d087
commit e7a72b70a6
9 changed files with 116 additions and 0 deletions
@@ -186,6 +186,16 @@ public class KotlinSteppingTestGenerated extends AbstractKotlinSteppingTest {
doStepIntoTest("idea/testData/debugger/tinyApp/src/filters/checkNotNull.kt");
}
@TestMetadata("doNotSkipClassloader.kt")
public void testDoNotSkipClassloader() throws Exception {
doStepIntoTest("idea/testData/debugger/tinyApp/src/filters/doNotSkipClassloader.kt");
}
@TestMetadata("doNotSkipConstructors.kt")
public void testDoNotSkipConstructors() throws Exception {
doStepIntoTest("idea/testData/debugger/tinyApp/src/filters/doNotSkipConstructors.kt");
}
@TestMetadata("npe.kt")
public void testNpe() throws Exception {
doStepIntoTest("idea/testData/debugger/tinyApp/src/filters/npe.kt");
@@ -211,6 +221,16 @@ public class KotlinSteppingTestGenerated extends AbstractKotlinSteppingTest {
doStepIntoTest("idea/testData/debugger/tinyApp/src/filters/stdlibStep.kt");
}
@TestMetadata("stepIntoSpecificKotlinClasses.kt")
public void testStepIntoSpecificKotlinClasses() throws Exception {
doStepIntoTest("idea/testData/debugger/tinyApp/src/filters/stepIntoSpecificKotlinClasses.kt");
}
@TestMetadata("stepIntoStdlib.kt")
public void testStepIntoStdlib() throws Exception {
doStepIntoTest("idea/testData/debugger/tinyApp/src/filters/stepIntoStdlib.kt");
}
}
public static Test suite() {