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[])

link|improve this question

What version of JUnit you're using? Have you used JUnit assertions before? Are you sure you want unit testing and not e.g. java.util.Arrays.equals/deepEquals methods? – polygenelubricants Aug 11 '10 at 12:12
Frankly I don't know what version of JUnit I'm using, but I know I've downloaded the Eclipse Version: 3.5.1 and JUnit was included. I haven't been using JUnit assertions before, I'm just learning. And yeah, I want unit testing. – siik Aug 11 '10 at 12:27
I found out - it is JUnit3. – siik Aug 11 '10 at 12:33
Yes, and the referenced JavaDoc is for JUnit 4. Javadoc for 3.8.1 can be found here – Andreas_D Aug 11 '10 at 13:46
feedback

4 Answers

up vote 2 down vote accepted

This should work with JUnit 4:

import static org.junit.Assert.*;
import org.junit.Test;

public class JUnitTest {

    /** Have JUnit run this test() method. */
    @Test
    public void test() throws Exception {

        assertArrayEquals(new int[]{1,2,3},new int[]{1,2,3});

    }
}

(answer is based on this wiki article)


And this is the same for the old JUnit framework (JUnit 3):

import junit.framework.TestCase;

public class JUnitTest extends TestCase {
  public void test() {
    assertArrayEquals(new int[]{1,2,3},new int[]{1,2,3});
  }
}

Note the difference: no Annotations and the test class is a subclass of TestCase (which implements the static assert methods).

link|improve this answer
It is JUnit3, but I'm getting the message: Description Resource Path Location Type The method assertArrayEquals(int[], int[]) is undefined for the type DeckTest – siik Aug 11 '10 at 12:37
are you extending TestCase? Please post sample code that shows the class in question. – matt b Aug 11 '10 at 13:42
@AndoidNoob - Assert@assertArrayEquals has been introduced with JUnit 4. So you either have to switch to JUnit 4 (always recommended) or verify the equality of arrays with several Java statements (loop through the array after making sure, they're of the same size) – Andreas_D Aug 11 '10 at 13:44
feedback

This could be useful if you want to use just assertEquals without depending on your Junit version

assertTrue(Arrays.equals(expected, actual));
link|improve this answer
feedback

Try adding
import static org.junit.Assert.*;

assertArrayEquals is a static method.

link|improve this answer
feedback

If you are writing JUnit 3.x style tests which extend TestCase, then you don't need to use the Assert qualifier - TestCase extends Assert itself and so these methods are available without the qualifier.

If you use JUnit 4 annotations, avoiding the TestCase base class, then the Assert qualifier is needed, as well as the import org.junit.Assert. You can use a static import to avoid the qualifier in these cases, but these are considered poor style by some.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.