public void IfExistsShouldReturnTheValueOfTheChildProperty() { _parent.IfExists(parent => parent.ChildThing).Should().Be(27); }
public void IfExistsShouldReturnTheDefaultTypeForTheChildProprty() { _parent.IfExists(parent => parent.ChildThing).Should().Be(default(int)); }