Best Jmock-library code snippet using org.jmock.api.Invocation.reportTypeError
Source:Invocation.java
...98 }99 else {100 Class<?> valueType = value.getClass();101 if (!isCompatible(returnType, valueType)) {102 reportTypeError(returnType, valueType);103 }104 }105 }106 private boolean isCompatible(Class<?> returnType, Class<?> valueType) {107 if (returnType.isPrimitive()) {108 // The reflection API doesn't reflect Java's auto-boxing.109 return isBoxedType(returnType, valueType);110 }111 return returnType.isAssignableFrom(valueType);112 }113 private boolean isBoxedType(Class<?> primitiveType, Class<?> referenceType) {114 return BOX_TYPES.get(primitiveType) == referenceType;115 }116 private void failIfReturnTypeIsNotNull(final Object result) {117 if (result != null) {118 throw new IllegalStateException("tried to return a value from a void method: " + result);119 }120 }121 private void failIfReturnTypeIsPrimitive() {122 Class<?> returnType = invokedMethod.getReturnType();123 if (returnType.isPrimitive()) {124 throw new IllegalStateException(125 "tried to return null value from method returning " + returnType.getName());126 }127 }128 129 private void reportTypeError(Class<?> returnType, Class<?> valueType) {130 throw new IllegalStateException(131 "tried to return a " + valueType.getName() +132 " from a method that can only return a " + returnType.getName());133 }134}...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!