diff --git a/src/test/kotlin/ParseTest.kt b/src/test/kotlin/ParseTest.kt index 18c4259..94a50fc 100644 --- a/src/test/kotlin/ParseTest.kt +++ b/src/test/kotlin/ParseTest.kt @@ -21,21 +21,6 @@ class ParseTest { File("src/test/resources/small/gold_b.mrg").readText() shouldBe outputStreamCaptor.toString() } - @Test - fun parseGoldShortWithAFormat(){ - val sentencesFile = File("src/test/resources/small/sentences") - val standardOut = System.out - val outputStreamCaptor = ByteArrayOutputStream() - System.setOut(PrintStream(outputStreamCaptor)) - val sentences = sentencesFile.inputStream() - System.setIn(sentences) - - Parse().parse(listOf("-a", "src/test/resources/outsideShort.txt", "src/test/resources/small/grammar.rules", "src/test/resources/small/grammar.lexicon")) - - - File("src/test/resources/small/gold_b.mrg").readText() shouldBe outputStreamCaptor.toString() - } - @Test fun parseWithRank6() { val outputStreamCaptor = ByteArrayOutputStream()