Remove system.out.println in testcases

This commit is contained in:
2020-11-05 10:18:53 +01:00
parent fbbac7fdb0
commit 5862a99d73
12 changed files with 39 additions and 39 deletions
@@ -8,20 +8,20 @@ public class TLWTeamsUpdaterTest {
public void getInsertSQLTest1() throws Exception {
TLWTeamsUpdater teamsUpdater = new TLWTeamsUpdater(2021, 1, "Tippliga.json");
String sql = teamsUpdater.getInsertSQL();
System.out.println(sql);
// System.out.println(sql);
}
@Test
public void getInsertSQLTest2() throws Exception {
TLWTeamsUpdater teamsUpdater = new TLWTeamsUpdater(2021, 2, "Tippliga.json");
String sql = teamsUpdater.getInsertSQL();
System.out.println(sql);
// System.out.println(sql);
}
@Test
public void getInsertSQLTest48() throws Exception {
TLWTeamsUpdater teamsUpdater = new TLWTeamsUpdater(2021, 48, "WTL_Pokal.json");
String sql = teamsUpdater.getInsertSQL();
System.out.println(sql);
// System.out.println(sql);
}
}