Java Code Examples for org.mockito.AdditionalMatchers#leq()
The following examples show how to use
org.mockito.AdditionalMatchers#leq() .
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 |
/** * Delegates call to {@link AdditionalMatchers#leq(Comparable)}. */ default <T extends Comparable<T>> T leq(T value) { return AdditionalMatchers.leq(value); }
Example 2
Source File: WithAdditionalMatchers.java From mockito-java8 with Apache License 2.0 | 4 votes |
/** * Delegates call to {@link AdditionalMatchers#leq(byte)}. */ default byte leq(byte value) { return AdditionalMatchers.leq(value); }
Example 3
Source File: WithAdditionalMatchers.java From mockito-java8 with Apache License 2.0 | 4 votes |
/** * Delegates call to {@link AdditionalMatchers#leq(double)}. */ default double leq(double value) { return AdditionalMatchers.leq(value); }
Example 4
Source File: WithAdditionalMatchers.java From mockito-java8 with Apache License 2.0 | 4 votes |
/** * Delegates call to {@link AdditionalMatchers#leq(float)}. */ default float leq(float value) { return AdditionalMatchers.leq(value); }
Example 5
Source File: WithAdditionalMatchers.java From mockito-java8 with Apache License 2.0 | 4 votes |
/** * Delegates call to {@link AdditionalMatchers#leq(int)}. */ default int leq(int value) { return AdditionalMatchers.leq(value); }
Example 6
Source File: WithAdditionalMatchers.java From mockito-java8 with Apache License 2.0 | 4 votes |
/** * Delegates call to {@link AdditionalMatchers#leq(long)}. */ default long leq(long value) { return AdditionalMatchers.leq(value); }
Example 7
Source File: WithAdditionalMatchers.java From mockito-java8 with Apache License 2.0 | 4 votes |
/** * Delegates call to {@link AdditionalMatchers#leq(short)}. */ default short leq(short value) { return AdditionalMatchers.leq(value); }