organized things

This commit is contained in:
nora 2020-12-19 20:18:30 +01:00
parent 8cd6b71fd0
commit 9502ea97b8
11 changed files with 119 additions and 107 deletions

View file

@ -0,0 +1,15 @@
package core.general;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class InputTest {
@Test
void simpleTest(){
Input.addPressedKey(10);
assertTrue(Input.keyPressed(10));
}
}