Linked Questions

Popular Questions

I'm using MSTest, when I first run all of my unit tests (or tests on their own) i want to create a unique identifier that I can put into db records to track the test. Problem is I want the same unique reference to be created and used across all tests. What I really want to use is a DateTime stamp. I'm looking for an event that always gets raised and then I can put it in a static container for the duration of the tests and then just access this static container from within the tests... Is this possible?....

Related Questions