Should a static class/method/property be used in a unit test development environment, given that there is no way to test it without introducing a wrapper that is again not t
You can't mock static methods/properties. So, when your classA uses some static member of classB you can't test classA in isolation.
UPDATE: I don't see any problem of wrapping some static class into object. It doesn't take lot of time, but it allows you to decrease coupling in your system.