コード例 #1
0
 public QueuedTestItem(Test test, IExecutionQueue queue, IScreenConductor shell)
     : this()
 {
     linkText.Content = test.LocatorPath();
     link.Click      += (x, y) => shell.OpenScreen(test);
     stop.Click      += (x, y) => queue.Cancel(test);
 }
コード例 #2
0
ファイル: TestService.cs プロジェクト: larsw/storyteller
 public void CancelTest(Test test)
 {
     _queue.Cancel(test);
 }