Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个 Visual Studio 解决方案文件。我想知道如何从该解决方案文件中识别测试项目。 有什么方法可以识别。?
如果您使用 Visual Studio 创建了单元测试,并且没有更改默认名称,VS2012 将在项目名称中添加“.Tests”后缀。同样在 VS2012 中,您会在解决方案资源管理器中获得不同的测试图像。
如果您使用记事本打开项目文件,您会发现指定项目类型的节点:
<IsCodedUITest>False</IsCodedUITest> <TestProjectType>UnitTest</TestProjectType>