|
|
@ -0,0 +1,16 @@ |
|
|
|
package de.tims.fleetstorm.matchfield; |
|
|
|
|
|
|
|
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); |
|
|
|
} |
|
|
|
} |