89 lines
2.3 KiB
Java
89 lines
2.3 KiB
Java
|
package comp1110.ass2;
|
||
|
|
||
|
import comp1110.ass2.testdata.DataLoader;
|
||
|
import org.junit.jupiter.api.Test;
|
||
|
import org.junit.jupiter.api.Timeout;
|
||
|
|
||
|
import java.util.concurrent.TimeUnit;
|
||
|
|
||
|
@Timeout(value = 30000, unit = TimeUnit.MILLISECONDS)
|
||
|
public class VariableSizeThreeFourPlayerTest {
|
||
|
private static void runTest(TestMapNamePlayerCount testClass){
|
||
|
for(String mapName : DataLoader.VARIABLE_SIZE){
|
||
|
if(testClass instanceof IsMoveValidTest){
|
||
|
switch (mapName) {
|
||
|
case "sides" -> ((IsMoveValidTest) testClass).setBoardSize(7);
|
||
|
case "space_invaders" -> ((IsMoveValidTest) testClass).setBoardSize(23);
|
||
|
default -> ((IsMoveValidTest) testClass).setBoardSize(13);
|
||
|
}
|
||
|
}
|
||
|
for(int players = 3; players <= 4; players++){
|
||
|
testClass.testMapNamePlayerCount(mapName, players);
|
||
|
}
|
||
|
}
|
||
|
if(testClass instanceof IsMoveValidTest) {
|
||
|
((IsMoveValidTest) testClass).setBoardSize(13);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void applyMoveTest(){
|
||
|
runTest(new ApplyMoveTest());
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void calculateIslandLinksScoreTest(){
|
||
|
runTest(new CalculateIslandLinksScoreTest());
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void calculateIslandMajoritiesScoreTest(){
|
||
|
runTest(new CalculateIslandMajoritiesScoreTest());
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void calculateResourcesAndStatuettesScoreTest(){
|
||
|
runTest(new CalculateResourcesAndStatuettesScoreTest());
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void calculateScoresTest(){
|
||
|
runTest(new CalculateScoresTest());
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void calculateTotalIslandsScoreTest(){
|
||
|
runTest(new CalculateTotalIslandsScoreTest());
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void endPhaseTest(){
|
||
|
runTest(new EndPhaseTest());
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void generateAIMoveTest(){
|
||
|
runTest(new GenerateAIMoveTest());
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void generateAllValidMovesTest(){
|
||
|
runTest(new GenerateAllValidMovesTest());
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void isMoveValidTest(){
|
||
|
runTest(new IsMoveValidTest());
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void isPhaseOverTest(){
|
||
|
runTest(new IsPhaseOverTest());
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void placePieceTest(){
|
||
|
runTest(new PlacePieceTest());
|
||
|
}
|
||
|
}
|