-
-
Save DominikDary/8a168b71f163cb8dee22 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[INFO] | |
[INFO] --- maven-surefire-plugin:2.14-SNAPSHOT:test (tck-tests) @ arquillian-jbossas-remote-6 --- | |
[INFO] Surefire report directory: /home/aslak/dev/source/testing/arquillian-container-jbossas/jbossas-remote-6/target/surefire-reports | |
------------------------------------------------------- | |
T E S T S | |
------------------------------------------------------- | |
Running org.arquillian.tck.container.cdi_1_0.CDIBeanLookupWarTestCase | |
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.866 sec | |
Running org.arquillian.tck.container.servlet_2_5.MultipleWebContextLookupMultiWarTestCase | |
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.692 sec | |
Running org.arquillian.tck.container.servlet_2_5.WebContextLookupWarTestCase | |
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.866 sec | |
Running org.arquillian.tck.container.servlet_2_5.MultipleWebContextLookupEarTestCase | |
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.976 sec | |
Running org.arquillian.tck.container.servlet_3_0.MultipleWebContextLookupMultiWarTestCase | |
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.372 sec | |
Running org.arquillian.tck.container.servlet_3_0.WebContextLookupWarTestCase | |
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.709 sec | |
Running org.arquillian.tck.container.servlet_3_0.MultipleWebContextLookupEarTestCase | |
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.957 sec | |
Results : | |
Tests run: 38, Failures: 0, Errors: 0, Skipped: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependencies> | |
<dependency> | |
<groupId>org.arquillian.tck.container</groupId> | |
<artifactId>arquillian-tck-container</artifactId> | |
<version>1.0.0.Final-SNAPSHOT</version> | |
<classifier>tests</classifier> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-surefire-plugin</artifactId> | |
<version>2.14-SNAPSHOT</version> | |
<configuration> | |
<dependenciesToScan> | |
<dependency>org.arquillian.tck.container:arquillian-tck-container</dependency> | |
</dependenciesToScan> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment