31 lines
796 B
Java
31 lines
796 B
Java
package de.jeyp91.apifootball;
|
|
|
|
import org.junit.Test;
|
|
|
|
public class APIFootballUpdaterTest {
|
|
|
|
@Test
|
|
public void updateFixturesTest() throws Exception {
|
|
APIFootballUpdater updater = new APIFootballUpdater();
|
|
// updater.updateFixtures(1240);
|
|
}
|
|
|
|
@Test
|
|
public void updateAllFixturesTest() throws Exception {
|
|
APIFootballUpdater updater = new APIFootballUpdater();
|
|
// updater.updateAllFixtures();
|
|
}
|
|
|
|
@Test
|
|
public void updateRoundsTest() throws Exception {
|
|
APIFootballUpdater updater = new APIFootballUpdater();
|
|
// updater.updateRounds(2777);
|
|
}
|
|
|
|
@Test
|
|
public void updateAllRoundsTest() throws Exception {
|
|
APIFootballUpdater updater = new APIFootballUpdater();
|
|
// updater.updateAllRounds();
|
|
}
|
|
}
|