assertThat(result.getTestB(), is("works?!"));
}
@Test
public void testRemoveLeadingText_shouldWork() throws Exception {
TransformationDescription desc = getDescriptionForModelBToModelA();
desc.removeLeadingField("idB", "idA", "[#?]+", "3");
desc.removeLeadingField("testB", "testA", "#+", "2");
desc.removeLeadingField("blubB", "blubA", "[#?]+", "0");
desc.removeLeadingField("blubB", "blaA", "#+", "3");
installTransformation(desc);
ModelB model = new ModelB();
model.setIdB("#?##blub");
model.setTestB("##blub");