Is it possible to run specific method before each test in an assembly?
I know about TestInitialize attribute but this attribute has \"class scope\". If it\'
TestInitialize
You want to use [AssemblyInitialize].
[AssemblyInitialize]
See: MSDN Link
or this question: on stackoverflow