Reputation: 699
I'm new to visual studio, what are some of the differences between Managed Test Project and Native Unit Test Project. Most of the unit test information available on the internet just says to make a native unit test, but what's the actual difference?
Upvotes: 14
Views: 3487
Reputation: 3830
Having a managed C++ class, enables you to use it also in fx. C# (CSharp) .NET scope. The memory scope is different, so if you are interfacing with .NET, then you need to use C++ managed unit test or C# unit test project
Upvotes: 1