summaryrefslogtreecommitdiff
path: root/yaksh/java_files/main_hello_name.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/main_hello_name.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/main_hello_name.java')
-rw-r--r--yaksh/java_files/main_hello_name.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/yaksh/java_files/main_hello_name.java b/yaksh/java_files/main_hello_name.java
deleted file mode 100644
index 84bb282..0000000
--- a/yaksh/java_files/main_hello_name.java
+++ /dev/null
@@ -1,29 +0,0 @@
-class main_hello_name
-{
- 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[])
- {
- Test t = new Test();
- String result;
- result = t.hello_name("Raj");
- System.out.println("Input submitted to the function: 'Raj'");
- check("hello Raj", result);
- result = t.hello_name("Pratham");
- System.out.println("Input submitted to the function: 'Pratham'");
- check("hello Pratham", result);
- result = t.hello_name("Ram");
- System.out.println("Input submitted to the function: 'Ram'");
- check("hello Ram", result);
- }
-}