Skip to content
Advertisement

I am unable to test the below mentioned method in JUnit testcase and getting ClassCastException

For below method i am writing JUnit testcase for sonarqube coverage.

JavaScript

JUnit testcase:

JavaScript

but, unable to mock or test the below line in JUnit testcase.

MessageHeaders headers = ((MessagingException) message.getPayload()).getFailedMessage().getHeaders();

Exception:

JavaScript

Advertisement

Answer

Your productive code

JavaScript

means you expect message.payload to be a MessagingException. But in your test, you create

JavaScript

so payload will be a string. You need to build a message with a MessagingException as payload.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement