Improve updater
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user