(Wrote the previous one in the wrong secion, I think)
Hi there, I looked into ARQ-337 (activating/deactivating scopes) yesterday together with Aslak and here's what we came up with.
Feedback expected.
This is how I imagine the code would look like:
@RunWith(Arquillian.class)
@DisabledScopes({SessionScope.class, ApplicationScope.class})
public class AnnotationTest {
/// ...
@Test
@EnabledScopes({SessionScope.class})
public void shouldBlah() {
// ...
Comments?