1
vote
How do you prevent over complicated solutions or designs?
Using Test Driven Development and following Robert C. Martin's Three Rules of TDD:
You are not …
2
votes
Which comes first - The Interface or the Class
I usually go with the second option. Write a class and extract interface later. Usually the reason for extracting an interface is the need for a second implementation of that interface (often as …
