mirror of
https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02.git
synced 2025-08-10 03:07:40 +02:00
init for monopoly
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
package pp.monopoly.client;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
public class ClientLogicTest {
|
||||
|
||||
}
|
@@ -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 {
|
||||
|
||||
}
|
@@ -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 {
|
||||
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
package pp.monopoly.model;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.fail;
|
||||
|
||||
public class RandomPositionIteratorTest {
|
||||
|
||||
}
|
Reference in New Issue
Block a user