diff --git a/testenrichers/cdi-jakarta/pom.xml b/testenrichers/cdi-jakarta/pom.xml index f01c5e11d..1dc096289 100644 --- a/testenrichers/cdi-jakarta/pom.xml +++ b/testenrichers/cdi-jakarta/pom.xml @@ -25,8 +25,7 @@ 1.8 - - 3.1.4.Final + 4.0.0.Alpha1 3.0.0-M2 2.2 1.7.28 diff --git a/testenrichers/cdi-jakarta/src/test/java/org/jboss/arquillian/testenricher/cdi/CDIInjectionEnricherTestCase.java b/testenrichers/cdi-jakarta/src/test/java/org/jboss/arquillian/testenricher/cdi/CDIInjectionEnricherTestCase.java index e0df1b803..9a0a3a31a 100644 --- a/testenrichers/cdi-jakarta/src/test/java/org/jboss/arquillian/testenricher/cdi/CDIInjectionEnricherTestCase.java +++ b/testenrichers/cdi-jakarta/src/test/java/org/jboss/arquillian/testenricher/cdi/CDIInjectionEnricherTestCase.java @@ -35,7 +35,6 @@ import org.junit.After; import org.junit.Assert; import org.junit.Before; -import org.junit.Ignore; import org.junit.Test; public class CDIInjectionEnricherTestCase extends AbstractTestTestBase { @@ -69,7 +68,6 @@ public void teardown() throws Exception { } @Test - @Ignore // Re-enable after Weld 4.x can be used as dependency public void shouldInjectClassMembers() throws Exception { TestClass testClass = new TestClass(); enricher.injectClass(testClass); @@ -77,7 +75,6 @@ public void shouldInjectClassMembers() throws Exception { } @Test - @Ignore // Re-enable after Weld 4.x can be used as dependency public void shouldInjectMethodArguments() throws Exception { Method testMethod = TestClass.class.getMethod("testMethod", Service.class, Service.class); @@ -88,7 +85,6 @@ public void shouldInjectMethodArguments() throws Exception { } @Test - @Ignore // Re-enable after Weld 4.x can be used as dependency public void shouldInjectMethodArgumentsEvent() throws Exception { Method testMethod = TestClass.class.getMethod("testEvent", Event.class, Event.class); @@ -99,7 +95,6 @@ public void shouldInjectMethodArgumentsEvent() throws Exception { } @Test - @Ignore // Re-enable after Weld 4.x can be used as dependency public void shouldReleaseCreationalContext() throws Exception { TestClass testClass = new TestClass(); enricher.injectClass(testClass); @@ -109,7 +104,6 @@ public void shouldReleaseCreationalContext() throws Exception { } @Test - @Ignore // Re-enable after Weld 4.x can be used as dependency public void shouldInjectMethodArgumentsInstance() throws Exception { Method testMethod = TestClass.class.getMethod("testInstance", Instance.class, Instance.class);