Dev2.Core.Tests.mvTest.StartStopRecordedFeedbackCommandExpectsFeedbackStartedWhenNotInProgress C# (CSharp) Method

StartStopRecordedFeedbackCommandExpectsFeedbackStartedWhenNotInProgress() private method

        public void StartStopRecordedFeedbackCommandExpectsFeedbackStartedWhenNotInProgress()
        {
            lock (syncroot)
            {
                CreateFullExportsAndVm();
                _feedbackInvoker.Setup(i => i.InvokeFeedback(It.IsAny<RecorderFeedbackAction>())).Verifiable();
                _mainViewModel.StartStopRecordedFeedbackCommand.Execute(null);
                _feedbackInvoker.Verify(i => i.InvokeFeedback(It.IsAny<RecorderFeedbackAction>()), Times.Once());
            }
        }
mvTest