Remove Gist

This commit is contained in:
2020-11-08 23:04:32 +01:00
parent 5862a99d73
commit 8cfb2a325a
48 changed files with 2792 additions and 668 deletions

View File

@@ -0,0 +1,14 @@
package de.jeyp91.teamidmatcher;
import de.jeyp91.teamidmatcher.TeamIDMatcherTemplateCreator;
import org.junit.Test;
public class TeamIDMatcherTemplateCreatorTest {
@Test
public void getTeamsTemplate() {
TeamIDMatcherTemplateCreator creator = new TeamIDMatcherTemplateCreator(0, 2790);
String template = creator.getTeamsTemplate();
// System.out.println(template);
}
}