Java Code Examples for org.mockito.AdditionalMatchers#aryEq()

The following examples show how to use org.mockito.AdditionalMatchers#aryEq() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: WithAdditionalMatchers.java    From mockito-java8 with Apache License 2.0 4 votes vote down vote up
/**
 * Delegates call to {@link AdditionalMatchers#aryEq(T[])}.
 */
default <T> T[] aryEq(T[] value) {
    return AdditionalMatchers.aryEq(value);
}
 
Example 2
Source File: WithAdditionalMatchers.java    From mockito-java8 with Apache License 2.0 4 votes vote down vote up
/**
 * Delegates call to {@link AdditionalMatchers#aryEq(short[])}.
 */
default short[] aryEq(short[] value) {
    return AdditionalMatchers.aryEq(value);
}
 
Example 3
Source File: WithAdditionalMatchers.java    From mockito-java8 with Apache License 2.0 4 votes vote down vote up
/**
 * Delegates call to {@link AdditionalMatchers#aryEq(long[])}.
 */
default long[] aryEq(long[] value) {
    return AdditionalMatchers.aryEq(value);
}
 
Example 4
Source File: WithAdditionalMatchers.java    From mockito-java8 with Apache License 2.0 4 votes vote down vote up
/**
 * Delegates call to {@link AdditionalMatchers#aryEq(int[])}.
 */
default int[] aryEq(int[] value) {
    return AdditionalMatchers.aryEq(value);
}
 
Example 5
Source File: WithAdditionalMatchers.java    From mockito-java8 with Apache License 2.0 4 votes vote down vote up
/**
 * Delegates call to {@link AdditionalMatchers#aryEq(float[])}.
 */
default float[] aryEq(float[] value) {
    return AdditionalMatchers.aryEq(value);
}
 
Example 6
Source File: WithAdditionalMatchers.java    From mockito-java8 with Apache License 2.0 4 votes vote down vote up
/**
 * Delegates call to {@link AdditionalMatchers#aryEq(double[])}.
 */
default double[] aryEq(double[] value) {
    return AdditionalMatchers.aryEq(value);
}
 
Example 7
Source File: WithAdditionalMatchers.java    From mockito-java8 with Apache License 2.0 4 votes vote down vote up
/**
 * Delegates call to {@link AdditionalMatchers#aryEq(char[])}.
 */
default char[] aryEq(char[] value) {
    return AdditionalMatchers.aryEq(value);
}
 
Example 8
Source File: WithAdditionalMatchers.java    From mockito-java8 with Apache License 2.0 4 votes vote down vote up
/**
 * Delegates call to {@link AdditionalMatchers#aryEq(byte[])}.
 */
default byte[] aryEq(byte[] value) {
    return AdditionalMatchers.aryEq(value);
}
 
Example 9
Source File: WithAdditionalMatchers.java    From mockito-java8 with Apache License 2.0 4 votes vote down vote up
/**
 * Delegates call to {@link AdditionalMatchers#aryEq(boolean[])}.
 */
default boolean[] aryEq(boolean[] value) {
    return AdditionalMatchers.aryEq(value);
}