IHandleEverythingExceptTheGrounds() public method

public IHandleEverythingExceptTheGrounds ( ) : void
return void
Ejemplo n.º 1
0
        protected void SetUp()
        {
            Actionwords = new Actionwords();

            // Given the coffee machine is started
            Actionwords.TheCoffeeMachineIsStarted();
            // And I handle everything except the grounds
            Actionwords.IHandleEverythingExceptTheGrounds();
        }
Ejemplo n.º 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();
 }
Ejemplo n.º 3
0
 public void IHandleEverythingExceptTheGrounds()
 {
     Actionwords.IHandleEverythingExceptTheGrounds();
 }