/** * Expects a long argument less than the given value. For details, see the EasyMock documentation. * * @param value the given value. * @return <code>0</code>. */ protected final long lt(long value) { return EasyMock.lt(value); }
/** * Expects a short argument less than the given value. For details, see the EasyMock * documentation. * * @param value the given value. * @return <code>0</code>. */ protected final short lt(short value) { return EasyMock.lt(value); }
/** * Expects an int argument less than the given value. For details, see the EasyMock documentation. * * @param value the given value. * @return <code>0</code>. */ protected final int lt(int value) { return EasyMock.lt(value); }
/** * Expects a float argument less than the given value. For details, see the EasyMock * documentation. * * @param value the given value. * @return <code>0</code>. */ protected final float lt(float value) { return EasyMock.lt(value); }
/** * Expects a double argument less than the given value. For details, see the EasyMock * documentation. * * @param value the given value. * @return <code>0</code>. */ protected final double lt(double value) { return EasyMock.lt(value); }
/** * Expects a byte argument less than the given value. For details, see the EasyMock documentation. * * @param value the given value. * @return <code>0</code>. */ protected final byte lt(byte value) { return EasyMock.lt(value); }
/** * Expects a comparable argument less than the given value. For details, see the EasyMock * documentation. * * @param value the given value. * @return <code>null</code>. */ protected final <T extends Comparable<T>> T lt(Comparable<T> value) { return EasyMock.lt(value); }