blob: 5a65719f6c38d5370b2d49d1c647485813680f30 [file] [log] [blame]
///////////////////////////////////////////////////////////////////////
NOTE TO WRITERS:
These CLI examples can be customized as necessary.
///////////////////////////////////////////////////////////////////////
Start the Junit tests using the following command:
--
[source,oac_no_warn]
----
mvn verify
----
--
Run the tests by excluding the optional jaxb tests using the following command:
--
[source,oac_no_warn]
----
mvn verify -DexcludedGroups=xml_binding
----
--
Run only the optional jaxb tests using the following command:
--
[source,oac_no_warn]
----
mvn verify -Dgroups=xml_binding
----
--
Run the tests by excluding the optional SEBootstrap tests using the
following command:
--
[source,oac_no_warn]
----
mvn verify -DexcludedGroups=se_bootstrap
----
--
Run the tests by excluding the security & servlet tests using the following
command:
--
[source,oac_no_warn]
----
mvn verify -DexcludedGroups=security,servlet
----
--
[[GCMCU]]
Example 5-1 {TechnologyShortName} TCK Signature Tests
To run the {TechnologyShortName} TCK signature tests, enter the
following commands:
[source,subs="attributes"]
----
mvn verify -Dit.test=ee.jakarta.tck.ws.rs.signaturetest.**
----
[[GCMBV]]
Example 5-2 Single Test Directory
To run a single test directory, enter the following commands:
[source,subs="attributes"]
----
mvn verify -Dit.test={singleTestDirectoryExample}.**
----
[[GCMCA]]
Example 5-3 Subset of Test Directories
To run a subset of test directories, enter the following commands:
[source,subs="attributes"]
----
mvn verify -Dit.test={subsetTestDirectoryExample}.**
----