Hi,
depending on which resources you are looking, for test-resources should be also available for your testclass, but if you are
looking for resources from src/main/resources those aren't available.
Pax Exam is for Integration tests, so those tests should be seperated from the classes to test. Never the less you can
add your classes and resources to a special bundle, for example take a look at [1].
Another way you might want to look at, use the probe builder to extend your test environment.
@ProbeBuilder
public TestProbeBuilder build(TestProbeBuilder builder)
regards, Achim