private static TestGroup ParseTestGroup(TreeNode testGroupNode) { TestGroup testGroup = new TestGroup(testGroupNode.Text); testGroupNode.Expand(); for (int i = 0; i < testGroupNode.Nodes.Count; i++) { if (i < testGroupNode.Nodes.Count - 1) { EnsureTestCaseNodeIsOnScreen(testGroupNode.Nodes[i + 1]); } testGroup.Add(ParseTestCase(testGroupNode.Nodes[i])); } return testGroup; }
public void Add(TestGroup tg) { testGroups.Add(tg); }