我如何 运行 .cs 测试我通常 运行 在 Visual Studio 测试资源管理器中,在命令行中?
How do I run .cs tests that I normally run in the Visual Studio Test Explorer, in the command line?
在开发过程中,我经常需要 运行 大约 5-6 次测试来填充测试所需的数据。我想自动执行此操作,这样我就不必每次都右键单击/"Run"。
我怎样才能得到 VS 正在 运行ning 的命令,这样我就可以把它放到一个快速脚本中,运行 是我 运行 需要的所有测试,单击(或单个命令)?
一些可能有帮助的链接:
https://dev.to/hatsrumandcode/net-core-2-why-xunit-and-not-nunit-or-mstest--aei
https://xunit.github.io/docs/getting-started-dotnet-core
https://docs.microsoft.com/pt-br/dotnet/core/testing/unit-testing-with-dotnet-test
mstest.exe command line tool 就是您要找的。
在堆栈溢出中,您可以在 [mstest] 标签下找到它,例如 how to run an mstest dll from command line
在开发过程中,我经常需要 运行 大约 5-6 次测试来填充测试所需的数据。我想自动执行此操作,这样我就不必每次都右键单击/"Run"。
我怎样才能得到 VS 正在 运行ning 的命令,这样我就可以把它放到一个快速脚本中,运行 是我 运行 需要的所有测试,单击(或单个命令)?
一些可能有帮助的链接:
https://dev.to/hatsrumandcode/net-core-2-why-xunit-and-not-nunit-or-mstest--aei
https://xunit.github.io/docs/getting-started-dotnet-core
https://docs.microsoft.com/pt-br/dotnet/core/testing/unit-testing-with-dotnet-test
mstest.exe command line tool 就是您要找的。
在堆栈溢出中,您可以在 [mstest] 标签下找到它,例如 how to run an mstest dll from command line