1 2 3 4 5 6 7 8
public final class HelloWorldTest {
public static void main(String[] args) {
var got = HelloWorld.sayHello("World");
if (!"Hello World!".equals(got)) {
throw new AssertionError("unexpected: " + got);
}
}
}