public void DefaultSettings() { // Given the coffee machine is started Actionwords.TheCoffeeMachineIsStarted(); // When I switch to settings mode Actionwords.ISwitchToSettingsMode(); // Then settings should be: "| water hardness | 2 | // | grinder | medium |" Actionwords.SettingsShouldBe("| water hardness | 2 |\n| grinder | medium |"); }
public void SettingsShouldBe(Table datatable) { Actionwords.SettingsShouldBe(datatable); }