标签: asp.net-core .net-core nunit mstest
我想显示按类别过滤的测试列表,但是当我执行以下命令时:
dotnet --filter="TestCategory!=ExcludeTest" --list-test
.NET Core CLI的--list-test似乎没有考虑--filter。 实际上,简短的documentation表示正在显示所有发现的测试:
--list-test
--filter
-t | --list-tests 列出当前项目中所有发现的测试。
-t | --list-tests
列出当前项目中所有发现的测试。
有解决方法吗? 任何帮助将不胜感激。