@Test
public void testComputesBoundsWithExcludeInstrutions() {
Layouter layouter = new Layouter( createEnvironment( new Bounds( 0, 0, 600, 200 ) ), createConfig() );
ArrayList<Instruction> instructions = new ArrayList<Instruction>();
instructions.add( new ExcludeInstruction() );
Bounds bounds = layouter.computeBounds( new Bounds( 0, 0, 100, 100 ), instructions );
assertEquals( new Bounds( 0, 0, 0, 0 ), bounds );
}