<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
import org.junit.Assert;
import org.junit.Test;
public class MyClassTest {
@Test
public void testAddition() {
int result = MyClass.add(2, 3);
Assert.assertEquals(5, result);
}
}