Non-generic CreateAnonymous method for AutoFixture
I sometimes (not often) find myself needing a non-generic version of the CreateAnonymous extension-method forAutoFixture [http://autofixture.codeplex.com/]. Usually when needing a test value, you do something like this: int someInt = new Fixture().CreateAnonymous<int>(); The code works for 99% of all tests. Now and then I…