-
1. Re: Reconfigure container on org.jboss.arquillian.test.spi.event.suite.Before event
aslak Nov 23, 2011 5:46 AM (in response to gvagenas)You can't reconfiger a running instance. But i just comitted the manual contianer mode, so you can manually start/stop a container(and start with other options)
@ArquillianResource
ContainerController controller;
controller.start('name', Map<String, String> options)
<container mode="manual" />
-
2. Re: Reconfigure container on org.jboss.arquillian.test.spi.event.suite.Before event
gvagenas Nov 23, 2011 8:13 AM (in response to aslak)Works great, thanks!
-
3. Re: Reconfigure container on org.jboss.arquillian.test.spi.event.suite.Before event
ips Mar 9, 2012 5:12 PM (in response to aslak)I notice the "mode" attribute isn't defined in the schema:
http://jboss.org/schema/arquillian/arquillian_1_0.xsd
Can you guys release a new version of the schema that contains that attribute and anything else that's been added that's not in the schema yet?
Also, I noticed there are two 1.0 xsd files under http://jboss.org/schema/arquillian/ - arquillian_1_0.xsd and arquillian-1.0.xsd
And the two files are different. This is confusing. Which one is the "real" 1.0 xsd? If the other one can't be deleted in fear of breaking existing stuff using it, then perhaps a README file could be added under http://jboss.org/schema/arquillian/, which explains the difference between the two, and which one is preferred.
Thanks,
Ian
-
4. Re: Reconfigure container on org.jboss.arquillian.test.spi.event.suite.Before event
aslak Mar 9, 2012 5:37 PM (in response to ips)Seems the upload had failed in the release process. Updated it now.
arquillian_1_0.xsd is the one to use, arquillian-1.0.xsd was there for backward compatibility a few versions back. But it's been enough time, deleted
-
5. Re: Reconfigure container on org.jboss.arquillian.test.spi.event.suite.Before event
ips Mar 9, 2012 9:04 PM (in response to aslak)Appreciate it!