feat: add arbitrary test as base
This commit is contained in:
parent
3f7d393d5d
commit
7f225b850c
@ -0,0 +1,15 @@
|
||||
package uulm.teamname.marvelous.gamelibrary;
|
||||
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
class TupleTest {
|
||||
@Test
|
||||
void basic() {
|
||||
var a = new Tuple<Integer, Integer>(0, 1);
|
||||
assertEquals((int) a.item1, 0);
|
||||
assertEquals((int) a.item2, 1);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user