Quick question, I\'m using the Visual Studio\'s testing framework for unit testing. Just wondering what\'s the difference between using the constructor to do initialization work
The ctor is for initializing the object.
ctor
TestInitialize is for initializing any objects or data needed to run the test.
TestInitialize