public void NonGenericImplicitImplementationClosurePostPositive() { IGenericInterface <string> j = new NonGenericImplicitImpl(); string[] x = new string[] { "abcd", "defg" }; j.WithStaticClosure(x, true); }
public void NonGenericImplicitImplementationClosure2PostNegative() { IGenericInterface <string> j = new NonGenericImplicitImpl(); string[] x = new string[] { "abcd", "defg" }; j.WithClosureObject(x, false); }
public void NonGenericImplicitImplementationClosure2PostNegative() { IGenericInterface <string> j = new NonGenericImplicitImpl(); string[] x = new string[] { "abcd", "defg" }; Assert.Throws <TestRewriterMethods.PostconditionException>(() => j.WithClosureObject(x, false)); }
public void NonGenericImplicitImplementationPostNegative() { IGenericInterface <string> j = new NonGenericImplicitImpl(); j.M("abcd", false); }
public void NonGenericImplicitImplementationPreNegative() { IGenericInterface <string> j = new NonGenericImplicitImpl(); j.M(null, true); }
public void NonGenericImplicitImplementationPostNegative() { IGenericInterface <string> j = new NonGenericImplicitImpl(); Assert.Throws <TestRewriterMethods.PostconditionException>(() => j.M("abcd", false)); }
public void NonGenericImplicitImplementationPreNegative() { IGenericInterface <string> j = new NonGenericImplicitImpl(); Assert.Throws <TestRewriterMethods.PreconditionException>(() => j.M(null, true)); }