init for monopoly

This commit is contained in:
Johannes Schmelz
2024-11-12 14:53:04 +01:00
parent f47cda7dc4
commit 3784348f91
60 changed files with 3460 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package pp.monopoly.client;
import org.junit.Test;
public class ClientLogicTest {
}

View File

@@ -0,0 +1,20 @@
////////////////////////////////////////
// Programming project code
// UniBw M, 2022, 2023, 2024
// www.unibw.de/inf2
// (c) Mark Minas (mark.minas@unibw.de)
////////////////////////////////////////
package pp.monopoly.game.client;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
public class ClientGameLogicTest {
}

View File

@@ -0,0 +1,12 @@
package pp.monopoly.game.server;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class ServerGameLogicTest {
}

View File

@@ -0,0 +1,9 @@
package pp.monopoly.model;
import org.junit.Test;
import static org.junit.Assert.fail;
public class RandomPositionIteratorTest {
}