NUnit Integration With Microsoft Test Manager

故事扮演 提交于 2019-12-09 19:43:45

问题


I can import test cases to Microsoft Test Manager from unit test assembly created in Visual Studio using tcm testcase import command.When I try to import test cases but using NUnit assembly the command fails saying "No Tests found to import".Is there another way by which I can import test cases created in Nunit to Microsoft Test Manager?


回答1:


We were able to pick up our NUnit tests fine using tcm to import to MTM, by adding a TestMethodAttribute to our NUnit test methods.

For example:

namespace NUnit.Tests
{
  using NUnit.Framework;

  [TestFixture]
  public class SuccessTests
  {
    [Microsoft.VisualStudio.TestTools.UnitTesting.TestMethod] //<-- here
    [Test] 
    public void Add()
    { 
      //
    }
  }
}

Using the fully-qualified reference to TestMethod was preferred over a using directive, since several of the class names clash between either implementation so this would introduce an ambiguity.

With the above in place, we were then able to successfully call tcm.exe to import these tests:

tcm testcase /import /collection:CollectionURL /teamproject:project /storage:path



回答2:


No, your tests need to be in the MSTest framework in order to be integrated with the Microsoft Test Manager. If you want to use MTM you need to convert your NUnit Test cases into MSTests. You can refer this URL in order to achieve this.



来源:https://stackoverflow.com/questions/25080448/nunit-integration-with-microsoft-test-manager

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!