-
Bug
-
Resolution: Unresolved
-
Major
-
1.0.1.Final
-
None
Use Case
I want to test web application and use Arquillian Jacoco Extension to get code coverage.
I have abstract test class of the following pattern (all tests extend this abstract class):
@RunAsClient public abstract class AbstractTest extends Arquillian { @Deployment public static WebArchive createTestArchive() { ... } ... }
Problem
Because of the @RunAsClient annotation, the RemoteExtensionLoader is not called, so JacocoRemoteExtension is not loaded.