Remove Gist
This commit is contained in:
@@ -2,25 +2,23 @@ package de.jeyp91.apifootball;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
public class APIFootballUpdaterTest {
|
||||
|
||||
@Test
|
||||
public void updateFixturesTest() throws IOException {
|
||||
APIFootballUpdater updater = new APIFootballUpdater(2021);
|
||||
// updater.updateFixtures(2692);
|
||||
public void updateFixturesTest() {
|
||||
APIFootballUpdater updater = new APIFootballUpdater();
|
||||
updater.updateFixtures(1240);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void updateAllFixturesTest() throws IOException {
|
||||
APIFootballUpdater updater = new APIFootballUpdater(2021);
|
||||
// updater.updateAllFixtures();
|
||||
public void updateAllFixturesTest() {
|
||||
APIFootballUpdater updater = new APIFootballUpdater();
|
||||
updater.updateAllFixtures();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void updateAllRoundsTest() throws IOException {
|
||||
APIFootballUpdater updater = new APIFootballUpdater(2021);
|
||||
// updater.updateAllRounds();
|
||||
public void updateAllRoundsTest() {
|
||||
APIFootballUpdater updater = new APIFootballUpdater();
|
||||
updater.updateAllRounds();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user