Improve matchdays updater

This commit is contained in:
2020-10-04 14:50:10 +02:00
parent 8828f4477a
commit bce0f3800c
4 changed files with 151 additions and 28 deletions

View File

@@ -1,2 +1,15 @@
package de.jeyp91.tippliga;public class TLWMatchdayUpdaterTest {
package de.jeyp91.tippliga;
import org.junit.Test;
public class TLWMatchdayUpdaterTest {
@Test
public void getUpdateSqlTest() throws Exception {
TLWMatchdaysUpdater matchdaysUpdater = new TLWMatchdaysUpdater(2021, 1, "Tippliga.json");
String sql = matchdaysUpdater.getUpdateSql();
System.out.println(sql);
}
}