aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/backend/parser/TestCaseParser.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jcgp/backend/parser/TestCaseParser.java')
-rw-r--r--src/jcgp/backend/parser/TestCaseParser.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/jcgp/backend/parser/TestCaseParser.java b/src/jcgp/backend/parser/TestCaseParser.java
new file mode 100644
index 0000000..c997177
--- /dev/null
+++ b/src/jcgp/backend/parser/TestCaseParser.java
@@ -0,0 +1,13 @@
+package jcgp.backend.parser;
+
+import java.io.File;
+
+import jcgp.backend.modules.problem.TestCaseProblem;
+
+public class TestCaseParser {
+
+ public static void parse(File file, TestCaseProblem<?> problem) {
+
+ }
+
+}