89101112131415161718
public class CheckSumTest { @Test public void test() { CheckSum command = new CheckSum(); CommandOutputBuilder output = new CommandOutputBuilder(); output.printLn("! UTILITIES"); output.printLn("CHECKSUM"); output.printLn("PRINT");
2021222324252627
assertCommand(output, command); } @Test public void testFake() { CheckSum command = new CheckSum(); command.toString(); }