This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.HashMap; | |
public class CodeRunner { | |
TestClass testClass = new TestClass(); | |
String answer_format = "Test1: %s\nTest2: %s"; | |
static String default_output_template = "Correct answers:\nTest1=%s\nTest2=%s\n"; | |
public static void main(String[] args) { | |
CodeRunner code = new CodeRunner(); | |
HashMap answers = code.tests(); |