raids plugin: fix rotation solver
This commit is contained in:
@@ -69,4 +69,12 @@ public class RotationSolverTest
|
||||
RotationSolver.solve(rooms);
|
||||
assertArrayEquals(new RaidRoom[]{VASA, SHAMANS, VESPULA, GUARDIANS}, rooms);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSolve5()
|
||||
{
|
||||
RaidRoom[] rooms = new RaidRoom[]{GUARDIANS, UNKNOWN_COMBAT, SHAMANS, VASA};
|
||||
RotationSolver.solve(rooms);
|
||||
assertArrayEquals(new RaidRoom[]{GUARDIANS, VESPULA, SHAMANS, VASA}, rooms);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user