CoffeeShouldBeServed() public method

public CoffeeShouldBeServed ( ) : void
return void
 public void SimpleUse()
 {
     // Given the coffee machine is started
     Actionwords.TheCoffeeMachineIsStarted();
     // When I take a coffee
     Actionwords.ITakeACoffee();
     // Then coffee should be served
     Actionwords.CoffeeShouldBeServed();
 }
Example #2
0
 public void FullGroundsDoesNotBlockCoffee()
 {
     // Given the coffee machine is started
     Actionwords.TheCoffeeMachineIsStarted();
     // And I handle everything except the grounds
     Actionwords.IHandleEverythingExceptTheGrounds();
     // When I take "50" coffees
     Actionwords.ITakeCoffeeNumberCoffees(50);
     // Then message "Empty grounds" should be displayed
     Actionwords.MessageMessageShouldBeDisplayed("Empty grounds");
     // And coffee should be served
     Actionwords.CoffeeShouldBeServed();
 }
Example #3
0
 public void CoffeeShouldBeServed()
 {
     Actionwords.CoffeeShouldBeServed();
 }