The method assertEquals(String, String) is undefined for the type TestJunit
You imported
import static org.junit.Assert.assertArrayEquals;
but not
import static org.junit.Assert.assertEquals;
You could also import every static member of Assert
with
import static org.junit.Assert.*;
Without these, Java thinks you are calling the method assertEquals
defined in the class the code is declared in. Such a method does not exist.