예제 #1
0
        public async Task Continue_DialogPending()
        {
            // Arrange
            _target.Begin(A.Fake <IDialog>());
            // Act
            await _target.Continue();

            // Assert
            A.CallTo(() => _target.CurrentDialog.Continue(A <ITurnContext> ._)).MustHaveHappened();
        }