#### 2.1.1. TestEngine
#### 2.1.2. TestExecutor
#### 2.1.3. TestReporter
<dependency>
<groupId>org.junit-pioneer</groupId>
<artifactId>junit-pioneer</artifactId>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class MyTestClass {
@Test
void myTestMethod() {
int result = 2 + 2;
assertEquals(4, result);
}
}
mvn test