Improve updater

This commit is contained in:
2020-10-04 11:53:30 +02:00
parent babfe66872
commit e57f79c18b
15 changed files with 14771 additions and 22 deletions

View File

@@ -1,2 +1,18 @@
<<<<<<< HEAD
package de.jeyp91.tippliga;
import org.junit.Test;
public class TLWMatchesUpdaterFootballTest {
@Test
public void getMatchesTest() throws Exception {
TLWMatchesUpdaterFootball updater = new TLWMatchesUpdaterFootball(2021, 1, "Tippliga.json");
String sql = updater.getUpdateSQL();
System.out.println(sql);
}
=======
package de.jeyp91.tippliga;public class TLWMatchesUpdaterFootball {
>>>>>>> origin/master
}

View File

@@ -1,2 +1,21 @@
<<<<<<< HEAD
package de.jeyp91.tippliga;
import org.junit.Test;
public class TLWTeamsUpdaterTest {
@Test
public void getTeamsTest() throws Exception {
TLWMatchesUpdaterFootball matchesUpdater = new TLWMatchesUpdaterFootball(2021, 1, "Tippliga.json");
TLWTeamsUpdater teamsUpdater = new TLWTeamsUpdater(2021, 1, matchesUpdater.tlwMatchesUpdated);
String sql = teamsUpdater.getInsertSQL();
System.out.println(sql);
}
=======
package de.jeyp91.tippliga;public class TLWTeamsUpdaterTest {
>>>>>>> origin/master
}