VS2012 のコード カバレッジ結果からすべてのプロパティとコンストラクターを除外する RunSettings ファイルを作成しています。ExcludeFromCodeCoverage 属性を認識していますが、正規表現を使用して runsettings ファイルでこれを実現したいと考えています。get および set メソッドの正規表現は、プロパティのコード カバレッジを削除するために機能しますが、コンストラクターには機能しません。
<Functions>
<Exclude>
<Function>^Fabrikam\.UnitTest\..*</Function>
<Function>^std::.*</Function>
<Function>^ATL::.*</Function>
<Function>.*::__GetTestMethodInfo.*</Function>
<Function>^Microsoft::VisualStudio::CppCodeCoverageFramework::.*</Function>
<Function>^Microsoft::VisualStudio::CppUnitTestFramework::.*</Function>
<Function>.*\.ctor.*</Function>
<Function>.*\.set_.*</Function>
<Function>.*\.get_.*</Function>
</Exclude>
</Functions>