I want to debug the launch of several tests and see the messages in the console from them. However, I can not determine to which test each message belongs. There is an method whith [AssemblyInitialise] attribute, but it is executed only once. There is method with attribute of [TestInitialize], but it is performed only for tests of one class, and I do not know how to get the name of the current test in this handler.
[Clarification]
I use MsTest for integration tests. I can switch to Nunit if it is necessary for the solution.