Like VS2010, native C ++ testing is not directly supported by Visual Studio. See MSDN in particular:
You cannot have unit test projects that use unmanaged C ++.
You can still do your own C ++ testing with Visual Studio, but it will not be as integrated as other VS functions. See this SO answer for a few basic testing modules and libraries. I have not used any of them, so I can not give any guidance.
source
share