Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update test
  • Loading branch information
cxchu committed Mar 14, 2017
1 parent d63876f commit 25c4088
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/test/java/kb/howtokb/jdbc/JDBCConnectorTest.java
@@ -0,0 +1,16 @@
package kb.howtokb.jdbc;

import java.io.IOException;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;

import kb.howtokb.tools.InformationExtraction;

public class JDBCConnectorTest {
public static void main(String[] args) throws ClassNotFoundException, SQLException, IOException {
List<Integer> ids = new ArrayList<>();
ids.add(2); ids.add(3);
System.out.println(InformationExtraction.getListofActivitySurfaceFromDb(ids));
}
}

0 comments on commit 25c4088

Please sign in to comment.