0
TeamCity支持使用MSTest進行測試並使用dotCover計算代碼覆蓋範圍;這甚至集成到默認的TeamCity安裝中。但是,Visual Studio 2012使用vstest(vstest.console.exe)運行測試,並使用Microsoft recommends new projects to use vstest instead of MSTest。TeamCity + vstest.console.exe + dotCover集成
使用MSTest時,只需點擊一下即可配置內置的測試運行器以使用dotCover。
我設法讓vstest使用命令行轉輪運行。現在下一步是計算代碼覆蓋率:
如何使用TeamCity提供的dotCover分析使用vstest.console.exe運行的測試?