Exemplo n.º 1
0
 /// <summary>this is the special part of this test: circular references</summary>
 internal virtual void AdjustParents()
 {
     if (h2 != null)
     {
         STRUH2 th2 = (STRUH2)h2;
         th2.parent = this;
         if (th2.h3 != null)
         {
             STRUH3 th3 = (STRUH3)th2.h3;
             th3.parent      = th2;
             th3.grandParent = this;
         }
     }
 }
Exemplo n.º 2
0
 public STRUH1TestCase(STRUH2 a2, string str)
 {
     h2   = a2;
     foo1 = str;
 }
Exemplo n.º 3
0
		public STRUH1TestCase(STRUH2 a2, string str)
		{
			h2 = a2;
			foo1 = str;
		}
Exemplo n.º 4
0
 public STRUH1TestCase(STRUH2 a2)
 {
     h2 = a2;
 }
Exemplo n.º 5
0
		public STRUH1TestCase(STRUH2 a2)
		{
			h2 = a2;
		}