vote up 1 vote down star

I would migrate all my unit tests from nunit to mstest. In the solution I have a nunit-config file, which looks like that:

<NUnitProject>
<Settings activeconfig="Web">
<Config name="Web" appbase="Web" configfile="web.config" binpathtype="Auto">
    <assembly path="bin\Product.NUnit.ComponentA.dll"/>
    <assembly path="bin\Product.NUnit.ComponentB.dll"/>
    <assembly path="bin\Product.NUnit.ComponentC.dll"/>
</Config>
</NUnitProject>

The question is now, how could I do that in mstest?

flag

1 Answer

vote up 1 vote down check

You can use MSBuild to execute a "MSTest-Task"... Have a look here: http://blogs.microsoft.co.il/blogs/ndobkin/archive/2007/12/16/mstest-task-for-msbuild.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.