示例#1
0
 public async Task Test_CalendarCheckAvailableSlotFilling()
 {
     this.ServiceManager = MockServiceManager.SetAllToDefault();
     await this.GetTestFlow()
     .Send(CheckAvailableTestUtterances.CheckAvailableSlotFilling)
     .AssertReplyOneOf(this.AskForCollectContact())
     .Send(Strings.Strings.DefaultUserName)
     .AssertReplyOneOf(this.AskForCollectTime())
     .Send("4 pm")
     .AssertReplyOneOf(this.AvailableResponse())
     .AssertReplyOneOf(this.AskForCreateNewMeeting())
     .Send(Strings.Strings.ConfirmNo)
     .AssertReply(this.ActionEndMessage())
     .StartTestAsync();
 }
示例#2
0
 public void TestCleanup()
 {
     this.ServiceManager = MockServiceManager.SetAllToDefault();
 }