/**
  * Expects a long argument greater 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 geq(long value) {
   return EasyMock.geq(value);
 }
 /**
  * Expects a short argument greater 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 geq(short value) {
   return EasyMock.geq(value);
 }
 /**
  * Expects an int argument greater 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 geq(int value) {
   return EasyMock.geq(value);
 }
 /**
  * Expects a float argument greater 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 geq(float value) {
   return EasyMock.geq(value);
 }
 /**
  * Expects a double argument greater 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 geq(double value) {
   return EasyMock.geq(value);
 }
 /**
  * Expects a byte argument greater 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 geq(byte value) {
   return EasyMock.geq(value);
 }
 /**
  * Expects a comparable argument greater 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 geq(Comparable<T> value) {
   return EasyMock.geq(value);
 }