diff --git a/src/test/java/com/loafle/overflow/AppTest.java b/src/test/java/com/loafle/overflow/AppTest.java index 44fe4fc..4d164d0 100644 --- a/src/test/java/com/loafle/overflow/AppTest.java +++ b/src/test/java/com/loafle/overflow/AppTest.java @@ -38,19 +38,19 @@ public class AppTest { @Test @Ignore public void testSQL() { - SQLCrawler sc = new SQLCrawler(); - Map config = new HashMap(); - config.put("url", "jdbc:mysql://192.168.1.215:3306"); - config.put("user", "root"); - config.put("pw", "qwe123"); - config.put("ssl", false); - config.put("query", "show session status"); - - Object result = sc.getInternal(config); - for(Map m : (List>)result) { - for (Map.Entry entry : m.entrySet()) { - System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue()); - } - } +// SQLCrawler sc = new SQLCrawler(); +// Map config = new HashMap(); +// config.put("url", "jdbc:mysql://192.168.1.215:3306"); +// config.put("user", "root"); +// config.put("pw", "qwe123"); +// config.put("ssl", false); +// config.put("query", "show session status"); +// +// Object result = sc.getInternal(config); +// for(Map m : (List>)result) { +// for (Map.Entry entry : m.entrySet()) { +// System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue()); +// } +// } } } \ No newline at end of file