Files
tlw-database-tool/src/test/java/de/jeyp91/tippliga/TLWMatchdayUpdaterTest.java
T

27 lines
749 B
Java

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