* called on the mock object before. or if the last method
* called on the mock does not return <code>byte, short, char, int, or long</code>.
*/
public void setReturnValue(long value, int minCount, int maxCount) {
try {
state.setReturnValue(value, new Range(minCount, maxCount));
} catch (RuntimeException e) {
throw (RuntimeException) e.fillInStackTrace();
}
}