File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -81,12 +81,14 @@ docker run -d --hostname rabbitmq01 --name rabbitmq01 -p 15672:15672 -p 5672:567
81
81
Then, to run the tests use:
82
82
83
83
``` powershell
84
+ # will run tests on .NET Core and .NET Framework
84
85
run-test.bat
85
86
```
86
87
87
88
On MacOS, Linux, BSD use:
88
89
89
90
``` shell
91
+ # will only run tests on .NET Core
90
92
run-test.sh
91
93
```
92
94
@@ -96,9 +98,9 @@ Running individual tests and fixtures on Windows is trivial using the Visual Stu
96
98
To run a specific tests fixture on MacOS or Linux, use the NUnit filter expressions to select the tests to be run:
97
99
98
100
``` shell
99
- dotnet test projects/Unit --filter " Name~TestAmqpUriParseFail"
101
+ dotnet test projects/Unit -f netcoreapp3.1 - -filter " Name~TestAmqpUriParseFail"
100
102
101
- dotnet test projects/Unit --filter " FullyQualifiedName~RabbitMQ.Client.Unit.TestHeartbeats"
103
+ dotnet test projects/Unit -f netcoreapp3.1 - -filter " FullyQualifiedName~RabbitMQ.Client.Unit.TestHeartbeats"
102
104
```
103
105
104
106
## Running Tests for a Specific .NET Target
You can’t perform that action at this time.
0 commit comments