Exemplo n.º 1
0
 public void Unwrap_WrappedCandy_ReturnsFalse()
 {
     Assert.That(testCandy.IsWrapped(), Is.EqualTo(true));
     testCandy.Unwrap();
     Assert.That(testCandy.IsWrapped(), Is.EqualTo(false));
 }