コード例 #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
ファイル: TestTreeNode.cs プロジェクト: timonela/mb-unit
		public TestTreeNode(string name, TestNodeType nodeType)
		{
			this.name=name;
			this.nodeType = nodeType;
			this.state = TestState.NotRun;
			this.nodes = new TestTreeNodeCollection(this);
		}
コード例 #3
0
 public Enumerator(TestTreeNodeCollection collection)
 {
     this.wrapped = collection.List.GetEnumerator();
 }
コード例 #4
0
 public Enumerator(TestTreeNodeCollection collection)
 {
     this.wrapped = collection.List.GetEnumerator();
 }