Hi everyone,
I have a Unit Test project with 20+ .cs files. I want to run some setup code before each individual test. Kinda like how the [TestInitialize] attribute works. However, I'd need to put that attribute on all 20+ of my .cs files.
Is there a way to centralize the initializing code in one place for every test in my entire project?
Thanks!
-Mike