89101112131415161718
public class GetTimeTest { @Test public void test() { GetTime command = new GetTime(); CommandOutputBuilder output = new CommandOutputBuilder(); output.printLn("! UTILITIES"); output.printLn("GET-TIME"); output.printLn("PRINT");
2021222324252627
assertCommand(output, command); } @Test public void testFake() { GetTime command = new GetTime(); command.toString(); }