示例#1
0
 public TestTreeNode(string name, TestNodeType nodeType)
 {
     this.name     = name;
     this.nodeType = nodeType;
     this.state    = TestState.NotRun;
     this.nodes    = new TestTreeNodeCollection(this);
 }
示例#2
0
		public TestTreeNode(string name, TestNodeType nodeType)
		{
			this.name=name;
			this.nodeType = nodeType;
			this.state = TestState.NotRun;
			this.nodes = new TestTreeNodeCollection(this);
		}
 public Enumerator(TestTreeNodeCollection collection)
 {
     this.wrapped = collection.List.GetEnumerator();
 }
 public Enumerator(TestTreeNodeCollection collection)
 {
     this.wrapped = collection.List.GetEnumerator();
 }