Using a simple class
@ArquillianSuiteDeployment
@ExtendWith(ArquillianExtension.class)
public class ArqSuitTest {
@Deployment
public static WebArchive createDeployment() {
return ShrinkWrap.create(WebArchive.class, "1.war")
.addAsResource("META-INF/test-persistence.xml", "META-INF/persistence.xml");
}
}
With Junit 6 (also later 5 versions), Arquillian 1.10.0.Final, and Wildfly 38, on starting of the test I see the message:
Nov 10, 2025 12:35:39 AM org.eu.ingwar.tools.arquillian.extension.suite.DeploymentClassFinder getDeploymentClass
WARNING: arquillian-suite-deployment: Cannot find configuration in arquillian.xml, nor class annotated with @ArquillianSuiteDeployment, will try standard way..
The annotation is there and the test class runs, but the suit can't find it.
Using a simple class
With Junit 6 (also later 5 versions), Arquillian 1.10.0.Final, and Wildfly 38, on starting of the test I see the message:
The annotation is there and the test class runs, but the suit can't find it.