feat: add arbitrary test as base

This commit is contained in:
punchready 2021-04-30 20:56:32 +02:00
parent 3f7d393d5d
commit 7f225b850c
1 changed files with 15 additions and 0 deletions

View File

@ -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);
}
}