assertEquals( 50, height );
}
@Test
public void testCalculatesHeightWithPercentageAndZeroParentBounds() {
HeightInstruction instruction = new HeightInstruction( new Percentage( BigDecimal.valueOf( 50 ) ) );
int height = instruction.computeHeight( new Bounds( 0, 0, 0, 0 ), 16 );
assertEquals( 0, height );
}