public void TestGetCompletionTime_TrainingTimeWithStart_AssertEqual()
 {
     IStoreCustomer customer = new StubStoreCustomer(3, 5);
     customer.SetStartTime(3);
     var time = customer.GetCompletionTime(false);
     Assert.AreEqual(8, time);
 }
 public void TestGetCompletionTime_TrainingTimeWithoutStart_AssertEqual()
 {
     IStoreCustomer customer = new StubStoreCustomer(3, 3);
     var time = customer.GetCompletionTime(true);
     Assert.AreEqual(6, time);
 }
 public void TestGetCompletionTime_StraightTimeWithoutStart_AssertEqual()
 {
     IStoreCustomer customer = new StubStoreCustomer(3, 5);
     var time = customer.GetCompletionTime(false);
     Assert.AreEqual(5, time);
 }