JUnit checks should allow using ArrayAssert etc.
A source code analyzer
Brought to you by:
adangel,
juansotuyo
When using the class junitx.framework.ArrayAssert from junit addons, PMD fails with the message:
"JUnit tests should include assert() or fail()"
Sample code (compares to byte[] arrays):
ArrayAssert.assertEquals("Invalid token", new String("Once upon a time").getBytes(), authtoken.getToken());