27 lines
739 B
Java
27 lines
739 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");
|
|
|
|
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");
|
|
|
|
String sql = matchdaysUpdater.getUpdateSql();
|
|
|
|
// System.out.println(sql);
|
|
// System.out.println(matchdaysUpdater.getBeautifulInfo());
|
|
}
|
|
}
|