OpenCover を使用してテストのコード カバレッジをチェックしようとしていますが、生成された出力 xml のコード カバレッジは 0% で、モジュール ブロックは空です。
次のコマンドライン引数を使用してコードカバレッジを確認しています
opencover.console -target:"C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\MSTest.exe" -targetargs:"/testcontainer:"C:\dev\tfs\Main\GUI\Test\Gui.Client.Tests\bin\Debug\Gui.Client.Tests.dll" /testsettings:"C:\dev\tfs\Main\GUI\Local.testsettings"" -targetdir:"C:\dev\tfs\Main\GUI\Test\Gui.Client.Tests\bin\Debug" -filter:+[*]* -output:c:\Reports\MSTest\GuiClientTests.xml
出力xmlファイルの内容は次のとおりです
<?xml version="1.0" encoding="utf-8"?>
<CoverageSession xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Summary numSequencePoints="0" visitedSequencePoints="0" numBranchPoints="0" visitedBranchPoints="0" sequenceCoverage="0" branchCoverage="0" maxCyclomaticComplexity="0" minCyclomaticComplexity="0" />
<Modules />
</CoverageSession>
助言がありますか?