removed test

This commit is contained in:
snoop 2017-08-07 19:19:33 +09:00
parent 93d05aaa41
commit 66a3d4442b
2 changed files with 9 additions and 8 deletions

1
.gitignore vendored
View File

@ -72,3 +72,4 @@ crawler.sql.iml
sql.iml
target/
crawler_sql.iml 제거할 예정
*.iml

View File

@ -65,22 +65,22 @@ public class AppTest {
@Test
@Ignore
public void testMYSQL() throws IOException {
Object result = new SQLCrawler().getInternal( getConfig("config/mysql.json"));
print("Mysql row", (List<OFResultSet>) result);
// Object result = new SQLCrawler().getInternal( getConfig("config/mysql.json"));
// print("Mysql row", (List<OFResultSet>) result);
}
@Test
@Ignore
public void testPGSQL() throws IOException {
Object result = new SQLCrawler().getInternal(getConfig("config/pgsql.json"));
print("PGSql", (List<OFResultSet>) result);
// Object result = new SQLCrawler().getInternal(getConfig("config/pgsql.json"));
// print("PGSql", (List<OFResultSet>) result);
}
@Test
@Ignore
public void testSQLServerConnection_Count() throws IOException {
Object result = new SQLCrawler().getInternal(getConfig("config/sqlserver_connection_count.json"));
print("MSSql Server", (List<OFResultSet>) result);
// Object result = new SQLCrawler().getInternal(getConfig("config/sqlserver_connection_count.json"));
// print("MSSql Server", (List<OFResultSet>) result);
}
@ -89,7 +89,7 @@ public class AppTest {
@Test
@Ignore
public void testSQLServerMultiKeyArray() throws IOException {
Object result = new SQLCrawler().getInternal(getConfig("config/sqlserver_multiple_key_array.json"));
print("MSSql Server MuoltiArray", (List< OFResultSet>) result);
// Object result = new SQLCrawler().getInternal(getConfig("config/sqlserver_multiple_key_array.json"));
// print("MSSql Server MuoltiArray", (List< OFResultSet>) result);
}
}