This question regards unit testing in Visual Studio using MSTest (this is important, because of MSTest\'s execution order). Both the method marked [TestInitialize] and the t
This question is also asked (later) at What’s the difference between using the constructor in VS Testing framework vs. TestInitialize() attribute?
FWIW I assume by "class constructor" you mean the instance constructor (not the static constructor).
I believe the same question you are asking could equally be asked about the static constructor vs. ClassInitialize...