Hi, I find it difficult to integrate AspectJ with Junit testing.
I need to get a different log for each test in testuite. Therefore, I need to know in my aspect when a new test case starts and when it ends. How can I determine such a point crop?
The next pointcut does not work for me, it is just entered once.
pointcut testIsAboutToBegin() : execution (* *.test(..));
source share