对DAO编写单元测试[5]

发表于:2010-04-26来源:作者:点击数: 标签:单元DAOdao编写

  对DAO编写单元测试[5]   软件测试

  @Before // 执行初始化脚本

  public void initTables() {

  for(String sql : initSqls) {

  executeSQL(sql);

  }

  }

  static Connection getConnection() throws SQLException {

  return DriverManager.getConnection("jdbc:hsqldb:mem:" + DATABASE_NAME, "sa", "");

  }

  static void close(Statement stmt) {

  if(stmt!=null) {

  try {

  stmt.close();

  }

  catch(SQLException e) {}

  }

  }

  static void close(Connection conn) {

  if(conn!=null) {

  try {

  conn.close();

原文转自:http://www.ltesting.net