@ -0,0 +1,9 @@
package de.tims.fleetstorm.matchfield;
public class MatchfieldCreation {
public int[][] createMatchfield() {
return new int[][] {};
}
@ -0,0 +1,16 @@
import static org.junit.Assert.assertNotNull;
import org.junit.jupiter.api.Test;
class MatchfieldCreationTest {
MatchfieldCreation matchfield = new MatchfieldCreation();
@Test
void testMatchfieldCreateNotEmpty() {
int[][] calcResult = matchfield.createMatchfield();
assertNotNull(calcResult);