コード例 #1
0
 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);
 }