Skip to content
Snippets Groups Projects
Commit 730d36cf authored by Daniel Plagge's avatar Daniel Plagge
Browse files

moved Kodkod test problems into a sub-folder

parent 886f24dc
No related branches found
No related tags found
No related merge requests found
Showing
with 2 additions and 1 deletion
...@@ -57,7 +57,8 @@ public class InteractionTestBase { ...@@ -57,7 +57,8 @@ public class InteractionTestBase {
} }
protected static String load(final String filename) throws IOException { protected static String load(final String filename) throws IOException {
InputStream input = KodkodTest.class.getResourceAsStream(filename); InputStream input = KodkodTest.class.getResourceAsStream("problems/"
+ filename);
int c = input.read(); int c = input.read();
StringBuffer buf = new StringBuffer(); StringBuffer buf = new StringBuffer();
while (c >= 0) { while (c >= 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment