Home | History | Annotate | Download | only in mockito

Lines Matching defs:or

26  * Example of using logical and(), not(), or() matchers:
35 * //1 or 10
36 * mock.someMethod(or(eq(1), eq(10)));
45 * argument greater than or equal the given value.
59 * byte argument greater than or equal to the given value.
73 * double argument greater than or equal to the given value.
87 * float argument greater than or equal to the given value.
101 * int argument greater than or equal to the given value.
115 * long argument greater than or equal to the given value.
129 * short argument greater than or equal to the given value.
143 * comparable argument less than or equal the given value details.
157 * byte argument less than or equal to the given value.
171 * double argument less than or equal to the given value.
185 * float argument less than or equal to the given value.
199 * int argument less than or equal to the given value.
213 * long argument less than or equal to the given value.
227 * short argument less than or equal to the given value.
758 public static boolean or(boolean first, boolean second) {
776 public static <T> T or(T first, T second) {
792 public static short or(short first, short second) {
808 public static long or(long first, long second) {
824 public static int or(int first, int second) {
840 public static float or(float first, float second) {
856 public static double or(double first, double second) {
872 public static char or(char first, char second) {
888 public static byte or(byte first, byte second) {