import java.sql.*; import java.util.*; import javax.sql.*; public class Bug15544 extends testsuite.BaseTestCase { public Bug15544(String name) { super(name); } public void setUp() throws Exception { dbUrl = "jdbc:mysql://localhost:3306/test?user=root&characterEncoding=Cp437"; super.setUp(); } public void testPound15544() throws SQLException { System.out.println("START"); System.out.println("END"); } public static void main(String args[]) throws Exception { junit.textui.TestRunner.run(Bug15544.class); } }