我正在尝试在 Eclipse 中使用 JUnit 运行测试,但测试用例没有运行,并且 holly 控制台没有显示任何内容。控制台中出现的唯一行是:
<terminated>AccountManagmentModuleTest[JUnit] D:\Program Files\Java\jdk1.6.0_26\bin\javaw.exe(Nov 23, 2012 12:08:49 PM)
我要做的就是运行测试用例。有些行正在执行,比如开始连接到 db,但没有使用 DriverManager 创建连接对象,也不抛出任何异常。
enter code here
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
conn = DriverManager.getConnection("jdbc:oracle:oci8:@local ip:1521:orcl", "dipak1","dipak1"); //got to finally from here, not even catching anything!!!
cstmt = conn.prepareCall(query);
cstmt.execute();
} catch (Exception e) {
e.printStackTrace();
} finally {
if (null != conn) {
if (null != cstmt) {
cstmt.close();
}
conn.close();
}
}