The test ice-cream cone is a strategic anti-pattern. It indicates excessive reliance on expensive and flaky forms of testing, such as manual and end-to-end, especially for components that could otherwise be tested with cheaper and much faster tests.

Although there are many variations of the ice-cream cone (and it’s antithesis: the test pyramid) out there, I find myself referring back to these by James Shore. They are from his talk Agile without a dedicated QA. For my own reference, I am capturing the images from his slides below.

The test pyramid

Unlike the ice-cream cone, the test pyramid makes for an effective test strategy.

Test pyramid
What are focused integration tests?

These are integration tests that test just the interface between our code and external systems. Since integration tests are generally slow to run, by keeping the integration layer thin and the subsequent tests “focused”, we can limit the number of integration tests we write (i.e. proportional to how many integrations there are in our system).

The test ice-cream cone

A test strategy that results in expensive yet fragile tests and hard to change software.

Test ice-cream cone