public void NegativeQuantifierTest2b()
        {
            IQuantifierTest2 iq = new QuantifierTest2();

            int[] A = new int[] { 3, 4, 5 };
            iq.CopyArray(A, false);
        }
        public void NegativeQuantifierTest2b()
        {
            IQuantifierTest2 iq = new QuantifierTest2();

            int[] A = new int[] { 3, 4, 5 };
            Assert.Throws <TestRewriterMethods.PostconditionException>(() => iq.CopyArray(A, false));
        }
        public void NegativeQuantifierTest2a()
        {
            IQuantifierTest2 iq = new QuantifierTest2();

            int[] A = new int[] { 3, 4, 5 };
            iq.ModifyArray(A, 3, false);
        }
        public void PositiveQuantifierTest2()
        {
            IQuantifierTest2 iq = new QuantifierTest2();

            int[] A = new int[] { 3, 4, 5 };
            iq.ModifyArray(A, 3, true);
            iq.CopyArray(A, true);
        }
 public void NegativeQuantifierTest2b()
 {
   IQuantifierTest2 iq = new QuantifierTest2();
   int[] A = new int[] { 3, 4, 5 };
   iq.CopyArray(A, false);
 }
 public void NegativeQuantifierTest2a()
 {
   IQuantifierTest2 iq = new QuantifierTest2();
   int[] A = new int[] { 3, 4, 5 };
   iq.ModifyArray(A, 3, false);
 }
 public void PositiveQuantifierTest2()
 {
   IQuantifierTest2 iq = new QuantifierTest2();
   int[] A = new int[] { 3, 4, 5 };
   iq.ModifyArray(A, 3, true);
   iq.CopyArray(A, true);
 }
 public void NegativeQuantifierTest2b()
 {
   IQuantifierTest2 iq = new QuantifierTest2();
   int[] A = new int[] { 3, 4, 5 };
   Assert.Throws<TestRewriterMethods.PostconditionException>(() => iq.CopyArray(A, false));
 }