Uses of Class
org.mockito.internal.matchers.apachecommons.EqualsBuilder
Packages that use EqualsBuilder
Package
Description
Argument matchers that use Apache Commons Lang reflection-equality.
-
Uses of EqualsBuilder in org.mockito.internal.matchers.apachecommons
Methods in org.mockito.internal.matchers.apachecommons that return EqualsBuilderModifier and TypeMethodDescriptionEqualsBuilder.append
(boolean[] lhs, boolean[] rhs) Deep comparison of array ofboolean
.EqualsBuilder.append
(boolean lhs, boolean rhs) Test if twobooleans
s are equal.EqualsBuilder.append
(byte[] lhs, byte[] rhs) Deep comparison of array ofbyte
.EqualsBuilder.append
(byte lhs, byte rhs) Test if twobyte
s are equal.EqualsBuilder.append
(char[] lhs, char[] rhs) Deep comparison of array ofchar
.EqualsBuilder.append
(char lhs, char rhs) Test if twochar
s are equal.EqualsBuilder.append
(double[] lhs, double[] rhs) Deep comparison of array ofdouble
.EqualsBuilder.append
(double lhs, double rhs) Test if twodouble
s are equal by testing that the pattern of bits returned bydoubleToLong
are equal.EqualsBuilder.append
(float[] lhs, float[] rhs) Deep comparison of array offloat
.EqualsBuilder.append
(float lhs, float rhs) Test if twofloat
s are equal byt testing that the pattern of bits returned by doubleToLong are equal.EqualsBuilder.append
(int[] lhs, int[] rhs) Deep comparison of array ofint
.EqualsBuilder.append
(int lhs, int rhs) Test if twoint
s are equal.EqualsBuilder.append
(long[] lhs, long[] rhs) Deep comparison of array oflong
.EqualsBuilder.append
(long lhs, long rhs) Test if twolong
s are equal.EqualsBuilder.append
(short[] lhs, short[] rhs) Deep comparison of array ofshort
.EqualsBuilder.append
(short lhs, short rhs) Test if twoshort
s are equal.Performs a deep comparison of twoObject
arrays.Test if twoObject
s are equal using theirequals
method.EqualsBuilder.appendSuper
(boolean superEquals) Adds the result ofsuper.equals()
to this builder.Methods in org.mockito.internal.matchers.apachecommons with parameters of type EqualsBuilderModifier and TypeMethodDescriptionprivate static boolean
EqualsBuilder.reflectionAppend
(Object lhs, Object rhs, Class<?> clazz, EqualsBuilder builder, boolean useTransients, String[] excludeFields) Appends the fields and values defined by the given object of the given Class.