Index: src/scratchpad/testcases/org/apache/poi/hslf/extractor/TestExtractor.java =================================================================== --- src/scratchpad/testcases/org/apache/poi/hslf/extractor/TestExtractor.java (revision 1756343) +++ src/scratchpad/testcases/org/apache/poi/hslf/extractor/TestExtractor.java (working copy) @@ -22,6 +22,7 @@ import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; import java.io.ByteArrayOutputStream; import java.io.InputStream; @@ -431,5 +432,17 @@ String target = "this\tText\tis\twithin\ta\n"+ "table\t1\t2\t3\t4"; assertTrue(text.contains(target)); - } + } + + @Test + public void testPrague() throws Exception { + HSLFSlideShowImpl hslf = new HSLFSlideShowImpl(slTests.openResourceAsStream("60003.ppt")); + ppe.close(); + + ppe = new PowerPointExtractor(hslf); + + String text = ppe.getText(); + assertContains(text, "Prague"); + hslf.close(); + } }