1

すべての単体テストを NUnit から MSTest に移行したいと考えています。ソリューションには、次のような NUnit 構成ファイルがあります。

<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>

MSTestでそれを行うにはどうすればよいですか?

4

1 に答える 1

1

MSBuild を使用して「MSTest-Task」を実行できます... ここを見てください: MSBuild の MSTest タスク

于 2009-07-02T08:26:15.980 に答える