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 sql.iml
target/ target/
crawler_sql.iml 제거할 예정 crawler_sql.iml 제거할 예정
*.iml

View File

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