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

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