Add api football files updater

This commit is contained in:
2020-10-07 22:14:13 +02:00
parent f997b9bf46
commit 285ec1074a
18 changed files with 15808 additions and 1048 deletions
@@ -5,11 +5,20 @@ import org.junit.Test;
public class TLWMatchdayUpdaterTest {
@Test
public void getUpdateSqlTest() throws Exception {
public void getUpdateSqlTest1() throws Exception {
TLWMatchdaysUpdater matchdaysUpdater = new TLWMatchdaysUpdater(2021, 1, "Tippliga.json");
String sql = matchdaysUpdater.getUpdateSql();
System.out.println(sql);
}
@Test
public void getUpdateSqlTest2() throws Exception {
TLWMatchdaysUpdater matchdaysUpdater = new TLWMatchdaysUpdater(2021, 2, "Tippliga.json");
String sql = matchdaysUpdater.getUpdateSql();
System.out.println(sql);
}
}