Expand my Community achievements bar.

AEM Mock : Coverage issue

Avatar

Level 2

The below is the class / System under Test :

1816763_pastedImage_0.png

Test Case:   It is throwing null pointer at line 71

1816766_pastedImage_9.png

Coverage Output

1816765_pastedImage_6.png

Query:

What changes need to be done in the test case to cover the try catch section of the code. Please Suggest.

2 Replies

Avatar

Employee

I am not sure if I understand your question completely. So, I am going to assume to want to understand the reason for the NullPointerException. From looking at the code, it appears that the object "resolver" is null because it has not been initialized in the method setUp(). Maybe adding the line below in the method setUp() will help.

resolver = context.mock(ResourceResolver.class);

Avatar

Level 2

Thank you for your response and is a value add.

Also, It looks like this will work for Mockito but for AEM Mock , its context object is not recognizing the mock class.