Add beautiful output

This commit is contained in:
2020-10-25 14:33:49 +01:00
parent 915daad6ee
commit 5609580094
10 changed files with 93 additions and 39 deletions
@@ -5,18 +5,20 @@ import org.junit.Test;
public class TLWMatchesUpdaterFootballTest {
@Test
public void getUpdateSqlTest1() throws Exception {
public void getUpdateSqlTest1() {
TLWMatchesUpdaterFootball updater = new TLWMatchesUpdaterFootball(2021, 1, "Tippliga.json");
String sql = updater.getUpdateSQL();
System.out.println(sql);
System.out.println(updater.getBeautifulInfo());
}
@Test
public void getUpdateSqlTest2() throws Exception {
public void getUpdateSqlTest2() {
TLWMatchesUpdaterFootball updater = new TLWMatchesUpdaterFootball(2021, 2, "Tippliga.json");
String sql = updater.getUpdateSQL();
System.out.println(sql);
System.out.println(updater.getBeautifulInfo());
}
}