summaryrefslogtreecommitdiff
path: root/yaksh/java_files/read_file.java
diff options
context:
space:
mode:
authorPrabhu Ramachandran2016-12-27 23:55:01 +0530
committerGitHub2016-12-27 23:55:01 +0530
commit48df2c1b30fa4bfc256399bbaadcbdefa555623d (patch)
treee1c4140c315655a9b57536e6550ac5eff5d67c4c /yaksh/java_files/read_file.java
parent48366e84b98157ac32b22b2aa19b1c1cde68afd4 (diff)
parent1b9a870975c1e2492b692ab8ec58bc3c628dcd82 (diff)
downloadonline_test-48df2c1b30fa4bfc256399bbaadcbdefa555623d.tar.gz
online_test-48df2c1b30fa4bfc256399bbaadcbdefa555623d.tar.bz2
online_test-48df2c1b30fa4bfc256399bbaadcbdefa555623d.zip
Merge pull request #167 from adityacp/new_fix_evaluators
Modify Evaluators to take moderator code as test case instead of files
Diffstat (limited to 'yaksh/java_files/read_file.java')
-rw-r--r--yaksh/java_files/read_file.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/yaksh/java_files/read_file.java b/yaksh/java_files/read_file.java
deleted file mode 100644
index 21a5836..0000000
--- a/yaksh/java_files/read_file.java
+++ /dev/null
@@ -1,26 +0,0 @@
-class read_file
-{
- public static <E> void check(E expect, E result)
- {
- if(result.equals(expect))
- {
- System.out.println("Correct:\nOutput expected "+expect+" and got "+result);
- }
- else
- {
- System.out.println("Incorrect:\nOutput expected "+expect+" but got "+result);
- System.exit(1);
- }
- }
- public static void main(String arg[])
- {
- String result = "";
- Test t = new Test();
- try{
- result = t.readFile();}
- catch(Exception e){
- System.out.print(e);
- }
- check("2", result);
- }
-}