assertSame( instruction2, instructions.get( 1 ) );
}
@Test
public void testReturnsEmptyInstructionsWithoutComplientRule() {
InstructionExtractor extractor = new InstructionExtractor( createEnvironment( new Bounds( 0, 0, 80, 100 ) ) );
List<Rule> rules = new ArrayList<Rule>();
Instruction instruction = PassePartout.columns( 5 );
Instruction instruction2 = PassePartout.columns( 10 );
rules.add( PassePartout.when( minWidth( px( 90 ) ) ).then( instruction ) );
rules.add( PassePartout.when( minWidth( px( 95 ) ) ).then( instruction2 ) );