Improve match list creator

This commit is contained in:
2020-10-31 22:58:06 +01:00
parent 7f98b928bd
commit d54e8991d7
5 changed files with 104 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
package de.jeyp91.gists;
import org.junit.Test;
import java.io.UnsupportedEncodingException;
public class MatchesListGistUpdaterTest {
@Test
public void updateAllLeaguesTest() throws UnsupportedEncodingException {
MatchesListGistUpdater updater = new MatchesListGistUpdater("Tippliga.json");
updater.updateAllLeagues();
}
}