Interaction logic for TestLine.xaml
Inheritance: System.Windows.Controls.UserControl
Exemplo n.º 1
0
        public ITestLineDriver AddTest(Test test, Action <Test> queueAction)
        {
            TestLineControls controls = new TestLinePanel().CreateControls(grid);

            return(new TestLineDriver(controls, test, queueAction));
        }
Exemplo n.º 2
0
 public ITestLineDriver AddTest(Test test, Action<Test> queueAction)
 {
     TestLineControls controls = new TestLinePanel().CreateControls(grid);
     return new TestLineDriver(controls, test, queueAction);
 }