Tagged Questions

7
votes
4answers
470 views

Patterns for making c++ code easy to test

Should you design your code to make testing easier? And if so how to design c++ code so that it is easy to test. How do you apply dependency-injection in c++? Should I implement the classes using a ...
5
votes
2answers
204 views

The proper way to do Dependency Injection in a Windows Client (WPF) Application

I am used to IoC/DI in web applications - mainly Ninject with MVC3. My controller is created for me, filled in with all dependencies in place, subdependencies etc. However, things are different in a ...
4
votes
2answers
834 views

Should static classes be avoided because it makes Dependency Injection Difficult?

Somebody tasked with creating a "Core" set of libraries created a set of static classes providing all sorts of utilities from logging, auditing and common database access methods. I personally think ...
2
votes
1answer
377 views

MEF and Factory Pattern

i am trying to refactor my project to improve testability, therefor i'm introducing an abstract factory. My application collects data from different sources by using ICrawlers. These ICrawlers use ...