package h05; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.*; /** * An example JUnit test class. */ public class ExampleJUnitTest { @Test public void testAddition() { assertEquals(2, 1 + 1); } }