如果我们使用 Visual Studio 2010 在单个单元测试中运行多个测试用例,如何找到通过或失败的测试用例。TestMethod()
我需要找出哪个通过,哪个失败。例如:在 XML 中,我有 2 个测试用例,例如
<Testcases>
<Test id="1">
<Employee>A</Employee>
<Country>B</Country>
</Test>
</Testcases>
<Testcases>
<Test id="2">
<Employee>C</Employee>
<Country>D</Country>
</Test>
</Testcases>