...

/

Smallest Possible Increment

Smallest Possible Increment

Learn the importance of adding small increments in the TDD cycle.

We'll cover the following...

For each failing test, we should seek to add only the code needed to pass the test so that we add the smallest possible increment.

The mentality

The mentality behind this is to build code exactly to the “specifications” that the test represents. If all the tests ...