Testing To Prevent Cascading Bugs

Posted by jfrankcarr on Programmers See other posts from Programmers or by jfrankcarr
Published on 2012-06-22T13:49:39Z Indexed on 2012/06/22 15:24 UTC
Read the original article Hit count: 257

Filed under:
|

Yesterday, Twitter was hit with a "Cascading Bug" as described in this blog post:

A “cascading bug” is a bug with an effect that isn’t confined to a particular software element, but rather its effect “cascades” into other elements as well.

I've seen this kind of bug, on a smaller scale of course, on some projects I've worked on. They can be difficult to identify in dev/test environments, even within a test driven development environment.

My questions are...

What are some strategies you use, beyond the basic TDD and standard regression testing, to identify and prevent the potential trouble points that might only occur in the production environment?

Does the presence of such problems indicate a breakdown in the software development process or simply a by-product of complex software systems?

© Programmers or respective owner

Related posts about testing

Related posts about TDD