package jetbrains.mps.closures.test; /*Generated by MPS */ import junit.framework.TestCase; import junit.framework.Assert; import java.io.IOException; public class MPS14656_Test extends TestCase { public void test_valid() throws Exception { try { MPS14656_helper.valid(); Assert.fail(); } catch (IOException e) { // expected exception } } public void test_invalid() throws Exception { try { MPS14656_helper.valid(); Assert.fail(); } catch (IOException e) { // expected exception } } public MPS14656_Test() { } }