@@ -15,24 +15,27 @@ SignalR.UnitTestingSupport.MSTest
15
15
```
16
16
#### 2. Using Packet Manager Console
17
17
```
18
- Install-Package SignalR.UnitTestingSupport.NUnit -Version 1.0.1
19
- Install-Package SignalR.UnitTestingSupport.xUnit -Version 1.0.0
20
- Install-Package SignalR.UnitTestingSupport.MSTest -Version 1.0 .0
18
+ Install-Package SignalR.UnitTestingSupport.NUnit -Version 1.1.0
19
+ Install-Package SignalR.UnitTestingSupport.xUnit -Version 1.1.1
20
+ Install-Package SignalR.UnitTestingSupport.MSTest -Version 1.1 .0
21
21
```
22
22
#### 3. Using .Net CLI
23
23
```
24
- dotnet add package SignalR.UnitTestingSupport.NUnit --version 1.0.1
25
- dotnet add package SignalR.UnitTestingSupport.xUnit --version 1.0.0
26
- dotnet add package SignalR.UnitTestingSupport.MSTest --version 1.0 .0
24
+ dotnet add package SignalR.UnitTestingSupport.NUnit --version 1.1.0
25
+ dotnet add package SignalR.UnitTestingSupport.xUnit --version 1.1.1
26
+ dotnet add package SignalR.UnitTestingSupport.MSTest --version 1.1 .0
27
27
```
28
- ## Important !
29
- Install ``` NUnit3TestAdapter ``` nuget for visual studio testing with NUnit in visual studio. https://www.nuget.org/packages/NUnit3TestAdapter/
28
+ ## Troubleshooting !
29
+ Install ``` NUnit3TestAdapter ``` nuget for visual studio testing with NUnit in visual studio. https://www.nuget.org/packages/NUnit3TestAdapter/
30
30
31
- Install ``` xunit.runner.visualstudio ``` nuget for visual studio testing with xUnit. https://www.nuget.org/packages/xunit.runner.visualstudio/
31
+ Install ``` xunit.runner.visualstudio ``` nuget for visual studio testing with xUnit. https://www.nuget.org/packages/xunit.runner.visualstudio/
32
32
33
- Install ``` MSTest.TestAdapter ``` nuget for visual studio testing with MSTest.
33
+ Install ``` MSTest.TestAdapter ``` nuget for visual studio testing with MSTest.
34
34
https://www.nuget.org/packages/MSTest.TestAdapter/
35
35
36
+ If your tests are not even detected, install ``` Microsoft.Net.Test.Sdk ``` nuget :)
37
+ https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/
38
+
36
39
# How to use
37
40
After you add nuget to your test project, SignalR_UnitTestingSupport is ready to use.
38
41
Create test class for hub for example:
0 commit comments