mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
PhaseType switched to enum
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
package forge;
|
||||
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
/**
|
||||
* Created by IntelliJ IDEA. User: dhudson
|
||||
*/
|
||||
@Test(groups = { "UnitTest" }, timeOut = 5000, enabled = false)
|
||||
public class PhaseHandlerTest {
|
||||
|
||||
/**
|
||||
* PhaseHandler test1.
|
||||
*/
|
||||
@Test(groups = { "UnitTest", "fast" }, timeOut = 5000, enabled = false)
|
||||
public void phaseTest1() {
|
||||
final PhaseHandler phase = new PhaseHandler();
|
||||
for (int i = 0; i < phase.getPhaseOrder().length; i++) {
|
||||
System.out.println(phase.getPlayerTurn() + " " + phase.getPhase());
|
||||
phase.nextPhase();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user