@Test
public void testTakeFerryNutritionist() {
control.setPlayer(nutritionist);
River river;
for (Place p : places) {
river = new River(control, p);
String ferry = river.takeFerry();
assertFalse(
"Not able to take Ferry",
ferry.equals("You don't have enough money to make it across!"));
}
river = new River(control, control.getCurrentPlace());
assertEquals(40, river.getFerryPrice());
control.getPlayer().intializeSkills();
assertEquals(40, river.getFerryPrice());
}