Questions tagged «vs-unit-testing-framework»


4
为什么在Visual Studio单元测试中的每个测试都会触发TestInitialize?
我使用Visual Studio 2010 Beta 2中我有一个单一的[TestClass],其中有一个[TestInitialize],[TestCleanup]和几个[TestMethods]。 每次运行测试方法时,初始化和清除方法也都运行! 我的印象是[TestInitialize]&[TestCleanup]每次本地测试只能运行一次。 那是对的吗?如果没有,执行此操作的正确方法是什么?

9
如何在MSTest中运行具有多个参数的测试方法?
NUnit具有一个称为“值”的功能,如下所示: [Test] public void MyTest( [Values(1,2,3)] int x, [Values("A","B")] string s) { // ... } 这意味着测试方法将运行6次: MyTest(1, "A") MyTest(1, "B") MyTest(2, "A") MyTest(2, "B") MyTest(3, "A") MyTest(3, "B") 我们现在正在使用MSTest,是否有与此等效的功能,以便可以使用多个参数运行相同的测试? [TestMethod] public void Mytest() { // ... }

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.