Initial commit

This commit is contained in:
simon
2017-11-02 21:51:22 -04:00
commit b76a1adea2
130 changed files with 8441 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package net.simon987.cubotplugin;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class CubotTest {
@Test
public void test(){
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
assertEquals(1,2);
}
}