assertThat(homePage.getFeaturedDestinations().size()).isEqualTo(featuredCount);
}
@Then("the featured destinations should include $expectedDestination costing $price")
public void featuredDestinationsShouldInclude(String expectedDestination, int price) {
DestinationDeal expectedDeal = new DestinationDeal(expectedDestination, price);
assertThat(homePage.getFeaturedDestinations()).contains(expectedDeal);
}