LBaelish
LBaelish

Reputation: 699

Visual Studio C++ difference between Managed Test Project and Native Unit Test Project

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

Answers (2)

serup
serup

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

Paul Evans
Paul Evans

Reputation: 27577

In Visual Studio Managed is .Net and Native is pure C++.

Upvotes: 11

Related Questions