initial, barely working implementation of inner classes

This commit is contained in:
Dmitry Jemerov
2011-05-29 18:16:58 +04:00
parent a83d6ed8f6
commit 9e4567ffc3
6 changed files with 99 additions and 20 deletions
@@ -65,8 +65,14 @@ public abstract class CodegenTestCase extends LightCodeInsightFixtureTestCase {
protected void blackBoxFile(String filename) throws Exception {
loadFile(filename);
//System.out.println(generateToText());
assertEquals("OK", blackBox());
String actual;
try {
actual = blackBox();
} catch (Exception e) {
System.out.println(generateToText());
throw e;
}
assertEquals("OK", actual);
}
protected String blackBox() throws Exception {