MSTest.exe 到 运行 .orderedtest 文件的正确语法是什么?

What is the correct syntax to use with MSTest.exe to run an .orderedtest file?

在 VS2015 单元测试项目中,您可以右键单击项目并添加有序测试。这使您能够在扩展名为 orderedtest 的文件中订购单元测试。

我找不到用于 MSTest.exe 到 运行 这个有序测试文件的正确语法。

测试容器是一个文件,其中包含您要 运行 的测试。例如,对于有序测试,测试容器是定义有序测试的 .orderedtest 文件。对于单元测试,它是从包含单元测试源文件的测试项目构建的程序集。

MSTest /TestContainer:OrderedTest1.orderedtest

另请参阅
How to run a ordered test from MSTest command line