1 30 31 32 package org.hsqldb.test; 33 34 import java.sql.Connection ; 35 36 public class TestScript extends TestBase { 37 38 String path = "TestSelfRoleNesting.txt"; 48 49 public TestScript(String name) { 55 super(name); 56 } 57 58 public void test() throws java.lang.Exception { 59 60 Connection conn = newConnection(); 61 62 TestUtil.testScript(conn, path); 63 } 64 65 public static void main(String [] Args) throws Exception { 66 67 TestScript ts = new TestScript("test"); 68 69 ts.test(); 70 } 71 } 72 | Popular Tags |