Add check for wrong endpoint for APIFootball

This commit is contained in:
2020-11-09 22:03:20 +01:00
parent 5474e2a4d1
commit c53511939d
5 changed files with 16 additions and 11 deletions

View File

@@ -5,19 +5,19 @@ import org.junit.Test;
public class APIFootballUpdaterTest {
@Test
public void updateFixturesTest() {
public void updateFixturesTest() throws Exception {
APIFootballUpdater updater = new APIFootballUpdater();
// updater.updateFixtures(1240);
updater.updateFixtures(1240);
}
@Test
public void updateAllFixturesTest() {
public void updateAllFixturesTest() throws Exception {
APIFootballUpdater updater = new APIFootballUpdater();
// updater.updateAllFixtures();
}
@Test
public void updateAllRoundsTest() {
public void updateAllRoundsTest() throws Exception {
APIFootballUpdater updater = new APIFootballUpdater();
// updater.updateAllRounds();
}