public function FeatureContext::theStateForBetweenAndShouldBe in Rooms - Drupal Booking for Hotels, B&Bs and Vacation Rentals 7
@Then /^the state for "([^"]*)" between "([^"]*)" and "([^"]*)" should be "([^"]*)"$/
File
- test/
features/ bootstrap/ FeatureContext.php, line 347
Class
- FeatureContext
- Features context.
Code
public function theStateForBetweenAndShouldBe($unit_name, $start_date, $end_date, $state) {
$this
->checkUnitPropertyRange($unit_name, $start_date, $end_date, $state, 'availability');
}