Skip to content
Advertisement

Comparing arrays in JUnit assertions, concise built-in way?

Is there a concise, built-in way to do equals assertions on two like-typed arrays in JUnit? By default (at least in JUnit 4) it seems to do an instance compare on the array object itself.

EG, doesn’t work:

JavaScript

Of course, I can do it manually with:

JavaScript

..but is there a better way?

Advertisement

Answer

Use org.junit.Assert‘s method assertArrayEquals:

JavaScript

If this method is not available, you may have accidentally imported the Assert class from junit.framework.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement