Uses of Class
eu.simuline.testhelpers.Assert.CmpObj
-
-
Uses of Assert.CmpObj in eu.simuline.testhelpers
Methods in eu.simuline.testhelpers that return Assert.CmpObj Modifier and Type Method Description static Assert.CmpObj
Assert.CmpObj. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Assert.CmpObj[]
Assert.CmpObj. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in eu.simuline.testhelpers with parameters of type Assert.CmpObj Modifier and Type Method Description static <E> void
Assert. assertIs(Assert.CmpObj cmpObj, E expected, E actual, java.util.Comparator<E> cmp)
Fails ifcmp.compare(expected, actual)
is not as expected and raises an exception if this expression cannot be evaluated.static <E> void
Assert. assertIs(Assert.CmpObj cmpObj, java.lang.Comparable<E> expected, E actual)
Fails ifexpected.compareTo(actual)
is not as expected and raises an exception if this expression cannot be evaluated.static <E> void
Assert. assertIs(Assert.CmpObj cmpObj, java.lang.String message, E expected, E actual, java.util.Comparator<E> cmp)
Fails ifcmp.compare(expected, actual)
is not as expected and raises an exception if this expression cannot be evaluated.static <E> void
Assert. assertIs(Assert.CmpObj cmpObj, java.lang.String message, java.lang.Comparable<E> expected, E actual)
Fails ifexpected.compareTo(actual)
is not as expected and raises an exception if this expression cannot be evaluated.
-