diff --git a/wordle.java b/wordle.java index 91b9e77..7ab5f99 100644 --- a/wordle.java +++ b/wordle.java @@ -7,6 +7,11 @@ import java.util.Arrays; import java.util.HashMap; import java.util.List; + +import static org.junit.jupiter.api.Assertions.assertEquals; + + +import org.junit.jupiter.api.Test; class Colorize{ @@ -183,4 +188,15 @@ public static void main(String[] args) throws IOException p.game(); } +} + + + +class MyFirstJUnitJupiterTests { + + @Test + void test1() { + assertEquals(2, 2); + } + } \ No newline at end of file