CCT.NUI.Tests.Core.ActionRunnerTests.Start_Runs_The_Action_And_StopAction C# (CSharp) Method

Start_Runs_The_Action_And_StopAction() private method

private Start_Runs_The_Action_And_StopAction ( ) : void
return void
        public void Start_Runs_The_Action_And_StopAction()
        {
            this.actionRunner.Start();
            Thread.Sleep(100);
            this.actionRunner.Stop();
            AssertAsync.IsTrue(() => this.actionHasRun, 200);
            AssertAsync.IsTrue(() => this.stopActionHasRun, 200);
        }