config = new GenericConfiguration();
config.set("attribute", "binarycontent");
}
public void testTransformer() throws Exception {
ContentTransformer t = new PPTContentTransformer(config);
t.processBean(bean);
String s = (String) bean.get("binarycontent");
String x = "Click to edit Master title style Click to edit Master text styles\rSecond level\rThird level\rFourth level\rFifth level Test Text This text contains special characters \u00D6\u00DC\u00C4\u00F6\u00FC\u00E4\u00DF? ";
assertEquals(x, s);
}