I\'m using a class library that can be reused by other components. In this class library I\'m using unity for dependency injection. For this class library I create a test pr
Doing it from the calling application puts more burden on the calling application. Leaving the chance to omit the initialization and get into trouble.
I would do it in the class library, for example in a static constructor.