dotnet 测试命令显示单个测试 运行 次?

dotnet test command to display individual test run times?

我正在从 javascript Mocha 切换到使用 .NET Core 的 MSTest 框架 3.x。

目前运行dotnet test显示:

Passed! - Failed: 0, Passed: 6, Skipped: 0, Total: 6, Duration: 521 ms

有没有什么方法可以让它像 Mocha 一样显示?

TestClass1
  TestMethod1 (51ms)
  TestMethod2 (100ms)
  TestMethod3 (24ms)

TestClass2
  TestMethod1 (115ms)
  TestMethod2 (55ms)

您可以尝试以下操作以获得类似的输出。

dotnet test -l "console;verbosity=detailed"