File size: 920 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # xUnit Tests
The folder contains xUnit tests for PowerShell Core project.
## Running xUnit Tests
Go to the top level of the PowerShell repository and run full set of tests:
`Start-PSxUnit` inside a self-hosted copy of PowerShell.
Go to the test project folder and run `dotnet test -c Release`.
Use [`filter`][xunit-filter] parameter to run only needed tests:
```powershell
dotnet test -c Release --filter "FullyQualifiedName~UnitTest1 # Runs tests which have UnitTest1 in FullyQualifiedName
dotnet test --filter Name~TestMethod1 # Runs tests whose name contains TestMethod1
```
## Creating xUnit Tests
Keep the folder structure that is for Pester [../../test/powershell](../../test/powershell) and C# files [../../src](../../src).
Use namespace names started with `PSTests`.
```c#
namespace PSTests.YourNameSpace
{
}
```
[xunit-filter]: https://learn.microsoft.com/dotnet/core/testing/selective-unit-tests
|