We use TeamCity as our CI server, and I\'ve just started seeing \"TestFixtureSetUp Failed\" in the test failure window.
\"TestFixtureSetUp Failed\"
Any idea how I go about debugging th
I had this issue and it was caused by adding a private readonly Dictionary in the class, much the same way that you add a private const string.
Dictionary
private const string
I tried to make the Dictionary a constant but you can't do that at compile time. I solved this by putting my Dictionary in a method that returns it.