Writing testable code
How am I going to test this?
I write unit tests so the code works as expected. There are guidelines for writing testable code.
Here are some flaws when designing code that makes it difficult for tests:
- Constructor does work.
- It violates the single responsiblity principle
- Testing is directly difficult
- Subclassing and overriding to test is flawed
- Forces collaborators on you
- Digging into Collaborators(Law of Demeter).
- Deceitful API
- Makes for brittle code
- Bloats code and complicates what is really happening
- Hard for testing
- Global state and singletons.
- Global state dirties design
- Global state enables spooky action at a distance
- Global state and singletons makes brittle application and tests
- Global state and singletons makes APIs into liars
- Globality and Global load is transitive
- A singleton is Global state
- Global state in Tests is an really bad
- Class does too much.
- Hard to debug
- Hard to test
- Non-extensible
- Not subject to altering behavior via standard mechanisms: decorator, strategy
- Difficult to give a name to what the class does.