请问在 .NET Core 2.0 中如何用 1 行 dotnet test 命令根据方法名中的关键字运行对应的单元测试?
用 --filter 与 -t 参数结合 grep 命令搞定
dotnet test --filter FullyQualifiedName="$(dotnet test -t | grep Mathjax)"
我在使用这个
dotnet test --filter Category=WebApiGet
但是需要在对应的测试方法上添加该属性
[Trait("Category", "WebApiGet")]
[Fact]
public async Task GetQuestionItemTest()
{
//...
}
可以参考这个 vstest-docs