Hi All,
I have a similar issue as described in this link http://stackoverflow.com/questions/31672975/null-pointer-exception-while-creating-junit-testcases-fo... , Any Solution for this?
Thanks in Advance.
Solved! Go to Solution.
Views
Replies
Total Likes
Thanks for the Reply. I figured out a way, this worked for me.
@Cascading
WCMUse wcmUse;
wcmUse.getResource().adaptTo(Node.class);
or
@Mocked
WCMUse wcmUse;
wcmUse.getResource();
Thanks!
Views
Replies
Total Likes
Try acquiring the resourceResolver object like the below example and try once
@Rulepublic final AemContext context = new AemContext();@Testpublic void testSomething() { ResourceResolver resourceResolver = context.resourceResolver(); }
Views
Replies
Total Likes
Thanks for the Reply. I figured out a way, this worked for me.
@Cascading
WCMUse wcmUse;
wcmUse.getResource().adaptTo(Node.class);
or
@Mocked
WCMUse wcmUse;
wcmUse.getResource();
Thanks!
Views
Replies
Total Likes
Views
Likes
Replies