Skip to content

Commit f3a600c

Browse files
authored
Update README.md
1 parent 4398dc3 commit f3a600c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,37 @@
22
33
> For the latest versions of xUnit version see: https://www.nuget.org/packages/SignalR.UnitTestingSupport.xUnit
44
5+
> For the latest versions of MSTest version see: https://www.nuget.org/packages/SignalR.UnitTestingSupport.MSTest/
6+
57
> For full docs see: https://github.com/NightAngell/SignalR_UnitTestingSupport/wiki
68
# How to install
79
#### 1. Using Visual Studio Nuget Package Manager
810
> If you dont know how install nuget via Visual Studio see this: https://www.youtube.com/watch?v=jX5HlrerIos
911
```
1012
SignalR.UnitTestingSupport.NUnit
1113
SignalR.UnitTestingSupport.xUnit
14+
SignalR.UnitTestingSupport.MSTest
1215
```
1316
#### 2. Using Packet Manager Console
1417
```
1518
Install-Package SignalR.UnitTestingSupport.NUnit -Version 1.0.1
1619
Install-Package SignalR.UnitTestingSupport.xUnit -Version 1.0.0
20+
Install-Package SignalR.UnitTestingSupport.MSTest -Version 1.0.0
1721
```
1822
#### 3. Using .Net CLI
1923
```
2024
dotnet add package SignalR.UnitTestingSupport.NUnit --version 1.0.1
2125
dotnet add package SignalR.UnitTestingSupport.xUnit --version 1.0.0
26+
dotnet add package SignalR.UnitTestingSupport.MSTest --version 1.0.0
2227
```
2328
## Important!
2429
Install ```NUnit3TestAdapter``` nuget for visual studio testing with NUnit in visual studio. https://www.nuget.org/packages/NUnit3TestAdapter/
2530

2631
Install ```xunit.runner.visualstudio``` nuget for visual studio testing with xUnit. https://www.nuget.org/packages/xunit.runner.visualstudio/
2732

33+
Install ```MSTest.TestAdapter``` nuget for visual studio testing with MSTest.
34+
https://www.nuget.org/packages/MSTest.TestAdapter/
35+
2836
# How to use
2937
After you add nuget to your test project, SignalR_UnitTestingSupport is ready to use.
3038
Create test class for hub for example:

0 commit comments

Comments
 (0)