public void setTestCase(ExtractionTestCase testCase)
 {
     this.testCase = testCase;
     updateTestCaseTitle();
     lbTestResult.BackColor = SystemColors.Control;
     success = null;
 }
Esempio n. 2
0
 /// <summary>
 /// Adds the testcase to the collection.
 /// </summary>
 /// <param name="etc"></param>
 public void AddTestCase(ExtractionTestCase etc)
 {
     cases.testCases.Insert(0, etc);
     ShowTestCases();
 }
 public TestCaseControl(ExtractionTestCase testcase)
 {
     InitializeComponent();
     setTestCase(testcase);
 }
Esempio n. 4
0
 private void SetTestCase(ExtractionTestCase testCase)
 {
     TestCase = testCase;
     UpdateTestCaseTitle();
     lbTestResult.BackColor = SystemColors.Control;
 }