mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 14:28:43 +00:00
Balance changes. Always wanted to use that as a commit message.
#story[1274]
This commit is contained in:
@@ -15,12 +15,12 @@ public class BoatMeshTypeTest {
|
||||
public void testNextBoatMeshType() {
|
||||
BoatMeshType currentBoat = BoatMeshType.DINGHY;
|
||||
BoatMeshType nextBoat = BoatMeshType.getNextBoatType(currentBoat);
|
||||
Assert.assertEquals(BoatMeshType.CAT_ATE_A_MERINGUE, nextBoat);
|
||||
Assert.assertEquals(BoatMeshType.CATAMARAN, nextBoat);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testPreviousBoatMeshType() {
|
||||
BoatMeshType currentBoat = BoatMeshType.CAT_ATE_A_MERINGUE;
|
||||
BoatMeshType currentBoat = BoatMeshType.CATAMARAN;
|
||||
BoatMeshType prevBoat = BoatMeshType.getPrevBoatType(currentBoat);
|
||||
Assert.assertEquals(BoatMeshType.DINGHY, prevBoat);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user