Add support for EM Tippspiel
This commit is contained in:
@@ -71,6 +71,14 @@ public class TLWMatchdaysCreatorTest {
|
||||
|
||||
TLWMatchdaysCreator matchdaysCreator = new TLWMatchdaysCreator(2021, 98, "WTL-Pokal");
|
||||
String sql = matchdaysCreator.getMatchdaysSQL();
|
||||
// System.out.println(sql);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getMatchdaysEMTippspielSqlTest() {
|
||||
|
||||
TLWMatchdaysCreator matchdaysCreator = new TLWMatchdaysCreator(2021, 49, "EM-Tippspiel");
|
||||
String sql = matchdaysCreator.getMatchdaysSQL();
|
||||
// System.out.println(sql);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,6 +29,13 @@ public class TLWMatchesCreatorFootballTest {
|
||||
public void getMatchesWTLPokalSqlTest() {
|
||||
TLWMatchesCreatorFootball creator = new TLWMatchesCreatorFootball(2021, 48, "WTL-Pokal");
|
||||
String sql = creator.getSQLInsertString();
|
||||
// System.out.println(sql);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getMatchesEMTippspielSqlTest() {
|
||||
TLWMatchesCreatorFootball creator = new TLWMatchesCreatorFootball(2021, 49, "EM-Tippspiel");
|
||||
String sql = creator.getSQLInsertString();
|
||||
// System.out.println(sql);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,6 +18,16 @@ public class TLWTeamsCreatorTest {
|
||||
// System.out.println(sql);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getTeamsTippligaEMTippspielTest() {
|
||||
TLWMatchesCreatorFootball matchesCreator = new TLWMatchesCreatorFootball(2021, 49, "EM-Tippspiel");
|
||||
ArrayList<TLWMatch> matches = matchesCreator.getMatches();
|
||||
|
||||
TLWTeamsCreator teamCreator = new TLWTeamsCreator(2021, 49, matches);
|
||||
String sql = teamCreator.getSql();
|
||||
// System.out.println(sql);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getTeamsTipper1TLTest() throws ParseException {
|
||||
TLWMatchdaysCreator matchdaysCreator = new TLWMatchdaysCreator(2021, 1, "Tippliga");
|
||||
|
||||
Reference in New Issue
Block a user