public void NegativeQuantifierTest1a() { IQuantifierTest1 iq = new QuantifierTest1(); int[] A = new int[] { 3, 4, 5 }; iq.ModifyArray(A, 3, false); }
public void NegativeQuantifierTest1a() { IQuantifierTest1 iq = new QuantifierTest1(); int[] A = new int[] { 3, 4, 5 }; Assert.Throws <TestRewriterMethods.PostconditionException>(() => iq.ModifyArray(A, 3, false)); }
public void PositiveQuantifierTest1() { IQuantifierTest1 iq = new QuantifierTest1(); int[] A = new int[] { 3, 4, 5 }; iq.ModifyArray(A, 3, true); iq.CopyArray(A, true); }
public void NegativeQuantifierTest1a() { IQuantifierTest1 iq = new QuantifierTest1(); int[] A = new int[] { 3, 4, 5 }; Assert.Throws<TestRewriterMethods.PostconditionException>(() => iq.ModifyArray(A, 3, false)); }