Remove Gist

This commit is contained in:
2020-11-08 23:04:32 +01:00
parent 633b633e2b
commit 4119163c4c
48 changed files with 2792 additions and 668 deletions
@@ -0,0 +1,13 @@
package de.jeyp91;
import org.junit.Test;
public class S3ProviderTest {
@Test
public void getFixturesFromS3Test() {
S3Provider prov = new S3Provider();
String rounds = prov.getFixturesStringFromS3(1240);
System.out.println(rounds);
}
}