Skip to content

Commit f0f5c88

Browse files
Merge pull request #951 from hogimn/document
2 parents cc44e22 + d693dbb commit f0f5c88

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Launch "essential" tests (takes about 10 minutes):
105105
```
106106
./mvnw verify -P '!setup-test-cluster' \
107107
-Drabbitmqctl.bin=DOCKER:rabbitmq \
108-
-Dit.test=ClientTests,FunctionalTests,ServerTests
108+
-Dit.test=ClientTestSuite,FunctionalTestSuite,ServerTestSuite
109109
```
110110

111111
Launch a single test:
@@ -125,7 +125,7 @@ system property must point to the `rabbitmqctl` program:
125125
./mvnw verify -P '!setup-test-cluster' \
126126
-Dtest-broker.A.nodename=rabbit@$(hostname) \
127127
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
128-
-Dit.test=ClientTests,FunctionalTests,ServerTests
128+
-Dit.test=ClientTestSuite,FunctionalTestSuite,ServerTestSuite
129129
```
130130

131131
To launch a single test:

RUNNING_TESTS.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ To run a subset of the test suite (do not forget to start a local RabbitMQ node)
3737
./mvnw verify -P '!setup-test-cluster' \
3838
-Dtest-broker.A.nodename=rabbit@$(hostname) \
3939
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
40-
-Dit.test=ClientTests,FunctionalTests,ServerTests
40+
-Dit.test=ClientTestSuite,FunctionalTestSuite,ServerTestSuite
4141
```
4242

4343
The test suite subset does not include TLS tests, which is fine for most
@@ -50,7 +50,7 @@ To run the tests against the NIO connector, add `-P use-nio` to the command line
5050
./mvnw verify -P '!setup-test-cluster',use-nio \
5151
-Dtest-broker.A.nodename=rabbit@$(hostname) \
5252
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
53-
-Dit.test=ClientTests,FunctionalTests,ServerTests
53+
-Dit.test=ClientTestSuite,FunctionalTestSuite,ServerTestSuite
5454
```
5555

5656
For details on running specific tests, see below.
@@ -67,7 +67,7 @@ top-level directory of the source tree:
6767
./mvnw verify -P '!setup-test-cluster',use-nio \
6868
-Dtest-broker.A.nodename=rabbit@$(hostname) \
6969
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
70-
-Dit.test=ClientTests
70+
-Dit.test=ClientTestSuite
7171
```
7272

7373
* To run the functional tests:
@@ -76,7 +76,7 @@ top-level directory of the source tree:
7676
./mvnw verify -P '!setup-test-cluster',use-nio \
7777
-Dtest-broker.A.nodename=rabbit@$(hostname) \
7878
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
79-
-Dit.test=FunctionalTests
79+
-Dit.test=FunctionalTestSuite
8080
```
8181

8282
* To run a single test:
@@ -103,7 +103,7 @@ Launch the tests:
103103
```
104104
./mvnw verify -P '!setup-test-cluster' \
105105
-Drabbitmqctl.bin=DOCKER:rabbitmq \
106-
-Dit.test=ClientTests,FunctionalTests,ServerTests
106+
-Dit.test=ClientTestSuite,FunctionalTestSuite,ServerTestSuite
107107
```
108108

109109
Note the `rabbitmqctl.bin` system property uses the syntax

0 commit comments

Comments
 (0)