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

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