Java Reference
In-Depth Information
<build>
<plugins>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
You can run the test on your application using the previous profile.
Now you can execute the integration test with:
mvn install jboss-as:deploy
mvn verify
The expected output is pretty verbose since it includes all the activity that is per-
formed behind the scenes by the Apache CXF Bus and the SOAP exchange data.
The most interesting part, however, is at the bottom of the maven output where the
Ticket list is dumped after booking one seat, as depicted in the following screenshot:
Search WWH ::




Custom Search