assertThat(child.getChildAttribute().length(), is(16));
}
@Test
public void shouldWorkWhenChainingInheritedProperty() {
Child child = Fixture.from(Child.class).gimme("chained");
assertThat(child.getParentAttribute().getValue().length(), is(8));
assertThat(child.getChildAttribute().length(), is(16));
}