Class Verify

java.lang.Object
org.junit.Assert
org.eclipse.collections.impl.test.Verify

public final class Verify
extends Assert
An extension of the Assert class, which adds useful additional "assert" methods. You can import this class instead of Assert, and use it thus, e.g.:
     Verify.assertEquals("fred", name);  // from original Assert class
     Verify.assertContains("fred", nameList);  // from new extensions
     Verify.assertBefore("fred", "jim", orderedNamesList);  // from new extensions