UnitTesting for mixed C++/Cli projects
c++, c++-cli, unit-testing
Solution
You can use NUnit to test both very easily. If you write the tests in C++/CLI you will be able to test the native code too. See here for a related discussion.
Problem
Which UnitTest framework should I use to test mixed C++ code (native and C++/CLI)? Any HowTo's or Tutorials? Thx