Code Coverage when using NUnit to test unmanaged C++
My team is currently using CppUnit for all our开发者_如何学Python unmanaged C++ unit tests but I'm toying with the idea of transitioning to NUnit through either GenTestAsm (pure C#) or C++/CLI. Either way, what consequences would I face on the Code Coverage front with either of these approaches?
We currently use PureCoverage to instrument our unmanaged unit test executables for collecting coverage data. Would we still be able to do this or is there another tool? Or would we lose code coverage visibility all together?
精彩评论