mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-20 19:16:43 +00:00
19 lines
332 B
Java
19 lines
332 B
Java
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);
|
|
}
|
|
} |