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

The following examples show how to use org.mockito.AdditionalMatchers#gt() . 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#gt(Comparable)}.
 */
default <T extends Comparable<T>> T gt(T value) {
    return AdditionalMatchers.gt(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#gt(byte)}.
 */
default byte gt(byte value) {
    return AdditionalMatchers.gt(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#gt(double)}.
 */
default double gt(double value) {
    return AdditionalMatchers.gt(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#gt(float)}.
 */
default float gt(float value) {
    return AdditionalMatchers.gt(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#gt(int)}.
 */
default int gt(int value) {
    return AdditionalMatchers.gt(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#gt(long)}.
 */
default long gt(long value) {
    return AdditionalMatchers.gt(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#gt(short)}.
 */
default short gt(short value) {
    return AdditionalMatchers.gt(value);
}