/**
  * Expects a long argument less than or equal to the given value. For details, see the EasyMock
  * documentation.
  *
  * @param value the given value.
  * @return <code>0</code>.
  */
 protected final long leq(long value) {
   return EasyMock.leq(value);
 }
 /**
  * Expects a short argument less than or equal to the given value. For details, see the EasyMock
  * documentation.
  *
  * @param value the given value.
  * @return <code>0</code>.
  */
 protected final short leq(short value) {
   return EasyMock.leq(value);
 }
 /**
  * Expects an int argument less than or equal to the given value. For details, see the EasyMock
  * documentation.
  *
  * @param value the given value.
  * @return <code>0</code>.
  */
 protected final int leq(int value) {
   return EasyMock.leq(value);
 }
 /**
  * Expects a float argument less than or equal to the given value. For details, see the EasyMock
  * documentation.
  *
  * @param value the given value.
  * @return <code>0</code>.
  */
 protected final float leq(float value) {
   return EasyMock.leq(value);
 }
 /**
  * Expects a double argument less than or equal to the given value. For details, see the EasyMock
  * documentation.
  *
  * @param value the given value.
  * @return <code>0</code>.
  */
 protected final double leq(double value) {
   return EasyMock.leq(value);
 }
 /**
  * Expects a byte argument less than or equal to the given value. For details, see the EasyMock
  * documentation.
  *
  * @param value the given value.
  * @return <code>0</code>.
  */
 protected final byte leq(byte value) {
   return EasyMock.leq(value);
 }
 /**
  * Expects a comparable argument less than or equal 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 leq(Comparable<T> value) {
   return EasyMock.leq(value);
 }