Cannot find symbol assertEquals
assertEquals is a static method. Since you can’t use static methods without importing them explicitly in a static way, you have to use either: import org.junit.Assert; … Assert.assertEquals(…) or: import static org.junit.Assert.assertEquals; … assertEquals(…) For @Test it’s a little bit different. @Test is an annotation as you can see by the @. Annotations are imported …