I\'m trying to write my first unit tests for a calculator, but NetBeans says it can\'t find the symbol assertEquals and annotation @Test. Should i
assertEquals
@Test
Using IntelliJ 2019.2.4 with a start.sping.io default setup...
import static org.junit.jupiter.api.Assertions.assertEquals;
but now instead of
Assert.assertEquals(expected, actual);
use
assertEquals(expected, actual);