Skip to content

Commit

Permalink
Removed unused inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
bnelo12 committed Oct 28, 2017
1 parent 1b13c34 commit 564dcec
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions MH_Parser_Test.java
@@ -1,13 +1,7 @@
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Paths;

import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.assertEquals;

Expand All @@ -25,7 +19,7 @@ private static String outputParseTreeToBuffer(TREE tree) {
}
return out;
}

static MH_Parser MH_Parser1 = MH_Type_Impl.MH_Parser1 ;

@Test
Expand Down Expand Up @@ -74,5 +68,5 @@ public void testParsingSuccessful() throws Exception {
LEX_TOKEN_STREAM MH_Lexer =
new CheckedSymbolLexer (new MH_Lexer (reader)) ;
TREE prog = MH_Parser1.parseTokenStream (MH_Lexer) ;
}
}
}

0 comments on commit 564dcec

Please sign in to comment.