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 |");
 }
Example #2
0
 public void SettingsShouldBe(Table datatable)
 {
     Actionwords.SettingsShouldBe(datatable);
 }