You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -11,13 +11,13 @@ structure. The main focus of ArchUnitNET is to automatically test architecture a
11
11
## An Example
12
12
To use ArchUnitNET, install the ArchUnitNET package from NuGet:
13
13
```
14
-
PS> Install-Package ArchUnitNET
14
+
PS> Install-Package TngTech.ArchUnitNET
15
15
```
16
16
If you want to use xUnit, NUnit or MSTestV2 for your unit tests, you should instead install the corresponding ArchUnit extension:
17
17
```
18
-
PS> Install-Package ArchUnitNET.xUnit
19
-
PS> Install-Package ArchUnitNET.NUnit
20
-
PS> Install-Package ArchUnitNET.MSTestV2
18
+
PS> Install-Package TngTech.ArchUnitNET.xUnit
19
+
PS> Install-Package TngTech.ArchUnitNET.NUnit
20
+
PS> Install-Package TngTech.ArchUnitNET.MSTestV2
21
21
```
22
22
#### Create a Test
23
23
Then you will want to create a class to start testing. We used xUnit with the ArchUnit extension here, but it works similarly with NUnit or other Unit Test Frameworks.
0 commit comments