From 358922841171b0e4171248eb4a4fb682ebeabe4e Mon Sep 17 00:00:00 2001 From: orhankalayci2017 Date: Sat, 12 Mar 2022 18:01:51 +0300 Subject: [PATCH] junit first test --- wordle.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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