예제 #1
0
 public ComponentTester(ComponentTester tester, int index)
 {
     if (index < 0)
     {
         throw new Exception("Should not have index < 0");
     }
     this.index = index;
     form       = tester.form;
     formName   = tester.formName;
     name       = tester.name;
 }
예제 #2
0
		public ComponentTester(ComponentTester tester, int index)
		{
			if(index < 0)
			{
				throw new Exception("Should not have index < 0");
			}
			this.index = index;
			form = tester.form;
			formName = tester.formName;
			name = tester.name;
		}