public void NegativeIfaceContractUsingLocalToHoldSelf2() {
   CodeUnderTest.IfaceContractUsingLocalToHoldSelf.J j = new CodeUnderTest.IfaceContractUsingLocalToHoldSelf.B();
   int[] A = new int[] { 3, 4, 5 };
   j.M(A, false);
 }
 public void PositiveIfaceContractUsingLocalToHoldSelf() {
   CodeUnderTest.IfaceContractUsingLocalToHoldSelf.J j = new CodeUnderTest.IfaceContractUsingLocalToHoldSelf.B();
   int[] A = new int[] { 3, 4, 5 };
   j.M(A, true);
 }