proper try/catch/finally

This commit is contained in:
Alex Tkachman
2011-11-16 14:26:16 +02:00
parent 3b17b3fac7
commit 1b04870fa4
7 changed files with 188 additions and 28 deletions
@@ -7,6 +7,7 @@ import java.util.List;
/**
* @author yole
* @author alex.tkachman
*/
public class ClassGenTest extends CodegenTestCase {
public void testPSVMClass() throws Exception {
@@ -208,4 +209,17 @@ public class ClassGenTest extends CodegenTestCase {
System.out.println(generateToText());
blackBox();
}
public void testKt501 () throws Exception {
blackBoxFile("regressions/kt501.jet");
}
public void testKt496 () throws Exception {
blackBoxFile("regressions/kt496.jet");
System.out.println(generateToText());
}
public void testKt500 () throws Exception {
blackBoxFile("regressions/kt500.jet");
}
}