// Om deze testen uit te voeren heb je JUnit 6 nodig (NIET versie 4) // Als onderstaande tekst in het rood staat, doe dan het volgende: // rechtermuisknop (op rode tekst "junit") > Show Context Actions > add JUnit 6 to classpath import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; public class SimpleTest { @Test public void testHelloStart() { Thing thing = new World(); Assertions.assertTrue( thing.hello().startsWith("Hello"), "Your greeting should start with 'Hello'" ); } }