Hi
I need to write a Unit Test for an AEM component that uses a service that returns a list of paths based on a Query.
How do I write a Unit Test for such a method.
getBlogItemsForPaths(someService.findPages(filter), resource, blogContext);
the someService returns a list of paths:
public Lis...