Files
tlw-database-tool/src/test/java/de/jeyp91/tippliga/TLWTeamsUpdaterTest.java
T
2020-11-08 23:04:32 +01:00

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);
}
}