From d796aff2d4a22ef076da96064f61af44baed5e3e Mon Sep 17 00:00:00 2001 From: Dany Marcoux Date: Wed, 22 May 2024 12:35:36 +0200 Subject: [PATCH] dotnet-test: add page (#12815) --- pages/common/dotnet-test.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pages/common/dotnet-test.md diff --git a/pages/common/dotnet-test.md b/pages/common/dotnet-test.md new file mode 100644 index 0000000000..21aa4e3757 --- /dev/null +++ b/pages/common/dotnet-test.md @@ -0,0 +1,17 @@ +# dotnet test + +> Execute tests for a .NET application. +> Note: View for supported filter expressions. +> More information: . + +- 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}}`