add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,17 @@
# dotnet 测试
> 执行 .NET 应用程序的测试。
> 注意:请查看 <https://learn.microsoft.com/en-us/dotnet/core/testing/selective-unit-tests> 以了解支持的过滤表达式。
> 更多信息:<https://learn.microsoft.com/dotnet/core/tools/dotnet-test>。
- 在当前目录中执行 .NET 项目/解决方案的测试:
`dotnet test`
- 在特定位置执行 .NET 项目/解决方案的测试:
`dotnet test {{path/to/project_or_solution}}`
- 执行与给定过滤表达式匹配的测试:
`dotnet test --filter {{Name~TestMethod1}}`