IHandleEverythingExceptTheWaterTank() public method

public IHandleEverythingExceptTheWaterTank ( ) : void
return void
コード例 #1
0
ファイル: WaterTest.cs プロジェクト: hiptest/hps-csharp-nunit
        protected void SetUp()
        {
            Actionwords = new Actionwords();

            // Given the coffee machine is started
            Actionwords.TheCoffeeMachineIsStarted();
            // And I handle everything except the water tank
            Actionwords.IHandleEverythingExceptTheWaterTank();
        }
コード例 #2
0
 public void IHandleEverythingExceptTheWaterTank()
 {
     Actionwords.IHandleEverythingExceptTheWaterTank();
 }