21 lines
442 B
Java
21 lines
442 B
Java
|
package ch.zhaw.catan;
|
||
|
|
||
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||
|
import org.junit.jupiter.api.Test;
|
||
|
|
||
|
|
||
|
/***
|
||
|
* TODO Write your own tests in this class.
|
||
|
*
|
||
|
* Note: Have a look at {@link ch.zhaw.catan.games.ThreePlayerStandard}. It can be used
|
||
|
* to get several different game states.
|
||
|
*
|
||
|
*/
|
||
|
public class SiedlerGameTest {
|
||
|
|
||
|
@Test
|
||
|
public void dummyTestMethod() {
|
||
|
assertTrue(false);
|
||
|
}
|
||
|
|
||
|
}
|