Ejemplo n.º 1
0
 public void IfExistsShouldReturnTheValueOfTheChildProperty()
 {
     _parent.IfExists(parent => parent.ChildThing).Should().Be(27);
 }
Ejemplo n.º 2
0
 public void IfExistsShouldReturnTheDefaultTypeForTheChildProprty()
 {
     _parent.IfExists(parent => parent.ChildThing).Should().Be(default(int));
 }