28 lines
807 B
Java
28 lines
807 B
Java
package de.jeyp91.tippliga;
|
|
|
|
import org.junit.Test;
|
|
|
|
public class TLWTeamsUpdaterTest {
|
|
|
|
@Test
|
|
public void getInsertSQLTest1() throws Exception {
|
|
TLWTeamsUpdater teamsUpdater = new TLWTeamsUpdater(2021, 1, "Tippliga");
|
|
String sql = teamsUpdater.getInsertSQL();
|
|
// System.out.println(sql);
|
|
}
|
|
|
|
@Test
|
|
public void getInsertSQLTest2() throws Exception {
|
|
TLWTeamsUpdater teamsUpdater = new TLWTeamsUpdater(2021, 2, "Tippliga");
|
|
String sql = teamsUpdater.getInsertSQL();
|
|
// System.out.println(sql);
|
|
}
|
|
|
|
@Test
|
|
public void getInsertSQLTest48() throws Exception {
|
|
TLWTeamsUpdater teamsUpdater = new TLWTeamsUpdater(2021, 48, "WTL-Pokal");
|
|
String sql = teamsUpdater.getInsertSQL();
|
|
// System.out.println(sql);
|
|
}
|
|
}
|