Setup rest of season 2024

This commit is contained in:
Julian Arndt
2023-08-14 14:35:30 +02:00
parent 23cef6f545
commit 29f00f39aa
7 changed files with 17 additions and 12 deletions

View File

@@ -273,5 +273,10 @@
"team_id": 2133,
"team_name": "Barb",
"team_name_short": "Barb"
},
{
"team_id": 2137,
"team_name": "Johannes",
"team_name_short": "Johannes"
}
]

View File

@@ -4,7 +4,7 @@ import org.junit.Test;
public class TLWMatchesCreatorTipperPokalTest {
int season = 2023;
int season = 2024;
@Test
public void getMatchesWTLPokalTest() {

View File

@@ -8,7 +8,7 @@ import static org.junit.Assert.assertEquals;
public class TLWMatchesCreatorTipperTest {
int season = 2023;
int season = 2024;
@Test
public void getMatchesTippliga1Test() {

View File

@@ -9,7 +9,7 @@ import static org.junit.Assert.assertEquals;
public class TLWTeamsCreatorTest {
int season = 2023;
int season = 2024;
@Test
public void getTeamsTippligaFootball1Test() {
@@ -62,7 +62,7 @@ public class TLWTeamsCreatorTest {
}
@Test
public void getTeamsTipper1TLTest() throws ParseException {
public void getTeamsTipper1TLTest() {
TLWMatchdaysCreator matchdaysCreator = new TLWMatchdaysCreator(season, 1, "Tippliga");
TLWMatchesCreatorTipperLeague creator = new TLWMatchesCreatorTipperLeague(season, 51, "1. Tippliga Tipper", matchdaysCreator.getMatchdays());
@@ -75,7 +75,7 @@ public class TLWTeamsCreatorTest {
}
@Test
public void getTeamsTipper2TLTest() throws ParseException {
public void getTeamsTipper2TLTest() {
TLWMatchdaysCreator matchdaysCreator = new TLWMatchdaysCreator(season, 2, "Tippliga");
TLWMatchesCreatorTipperLeague creator = new TLWMatchesCreatorTipperLeague(season, 52, "2. Tippliga Tipper", matchdaysCreator.getMatchdays());
@@ -88,7 +88,7 @@ public class TLWTeamsCreatorTest {
}
@Test
public void getTeamsTipperWTLTest() throws ParseException {
public void getTeamsTipperWTLTest() {
TLWMatchdaysCreator matchdaysCreator = new TLWMatchdaysCreator(season, 48, "WTL-Pokal");
TLWMatchesCreatorTipperPokal creator = new TLWMatchesCreatorTipperPokal(season, 98, "WTL-Pokal Tipper", matchdaysCreator.getMatchdays());