public void GetSummary_GetsSummaryFromDecoratedCommand()
        {
            var summary = DecoratorCommand.Summary;

            MockDecoratedCommand.Verify(dc => dc.Summary);
        }
        public void GetSubsequentCommands_GetsSubsequentCommandsFromDecoratedCommand()
        {
            DecoratorCommand.GetSubsequentCommands();

            MockDecoratedCommand.Verify(dc => dc.GetSubsequentCommands());
        }
        public void Execute_ExecutesDecoratedCommand()
        {
            DecoratorCommand.Execute();

            MockDecoratedCommand.Verify(dc => dc.Execute());
        }