I have a need to run some unit tests with @Alternative - mockedVersionA
and other tests with @Alternative - mockedVersionB
and other tests with @Alternative - mockedVersionC

It looks like Arquillian can handle this utilizing ShrinkWrap and
@Deployment....
addAsManifestResource( "mockedVersionA.xml","beans.xml");
addAsManifestResource( "mockedVersionB.xml","beans.xml");

Can I achieve the same functionality using CdiTestRunner ?
-Thanks

Reply via email to