Exemplo n.º 1
0
 public void PositiveInheritedOOBInvariant()
 {
   var c = new DerivedOutOfBandC();
   c.ViolateBaseInvariant(true);
 }
Exemplo n.º 2
0
 public void NegativeInheritedOOBInvariant()
 {
   var c = new DerivedOutOfBandC();
   Assert.Throws<TestRewriterMethods.InvariantException>(() => c.ViolateBaseInvariant(false));
 }
Exemplo n.º 3
0
 public void NegativeInheritedOOBInvariant()
 {
   var c = new DerivedOutOfBandC();
   c.ViolateBaseInvariant(false);
 }