mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-03 06:15:49 +02:00
dotnet-test: add page (#12815)
This commit is contained in:
parent
972b07c330
commit
d796aff2d4
1 changed files with 17 additions and 0 deletions
17
pages/common/dotnet-test.md
Normal file
17
pages/common/dotnet-test.md
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# dotnet test
|
||||||
|
|
||||||
|
> Execute tests for a .NET application.
|
||||||
|
> Note: View <https://learn.microsoft.com/en-us/dotnet/core/testing/selective-unit-tests> for supported filter expressions.
|
||||||
|
> More information: <https://learn.microsoft.com/dotnet/core/tools/dotnet-test>.
|
||||||
|
|
||||||
|
- Execute tests for a .NET project/solution in the current directory:
|
||||||
|
|
||||||
|
`dotnet test`
|
||||||
|
|
||||||
|
- Execute tests for a .NET project/solution in a specific location:
|
||||||
|
|
||||||
|
`dotnet test {{path/to/project_or_solution}}`
|
||||||
|
|
||||||
|
- Execute tests matching the given filter expression:
|
||||||
|
|
||||||
|
`dotnet test --filter {{Name~TestMethod1}}`
|
Loading…
Add table
Reference in a new issue