" World \n" +
" Scenario Outline:\n" +
" Given I have an empty stack\n" +
" When I pøsh <x> onto the stack";
lexer.scan(feature);
verify(listener).feature("Feature", "Hello", " Big \n World", 1);
verify(listener).step("Given ", "I have an empty stack", 5);
verify(listener).step("When ", "I pøsh <x> onto the stack", 6);
}