My intention is to use assertArrayEquals Junit method described out there: [http://www.junit.org/apidocs/org/junit/Assert.html#assertArrayEquals(int[], int[])][1]
for verification of one method in my class. But it happened Eclipse shows me the error message it can't recognize such a method. Those two imports are in place:
import java.util.Arrays;
import junit.framework.TestCase;
Did I miss something?
Thank you!
[1]: http://www.junit.org/apidocs/org/junit/Assert.html#assertArrayEquals(int[], int[])