public TestCase(TestCasesStructure structure)
 {
     if (structure == null)
     {
         return;
     }
     structure.AddTestCase(this);
     position = structure.GetNewTestCasePosition();
 }
Example #2
0
 public Dependency(TestCasesStructure structure)
 {
     if (structure == null)
     {
         return;
     }
     structure.AddDependency(this);
     position = structure.GetNewDependencyPosition();
 }
Example #3
0
        public StdCombination(TestCasesStructure structure)
        {
            if (structure == null)
            {
                return;
            }

            structure.AddStdCombination(this);
            position = structure.GetNewStdCombinationPosition();
        }