Skip to main content
Matthew Litwin

Preliminaries to a Software Testing Manifesto

I'm not quite ready for a manifesto. Still gathering my own thoughts, and trying to understand software testing terminology and methodologies. But - feels like there is a fair amount of confusion about how it's supposed to work even in the best case.

What is a Software Test

A software test is a repeatable process applied to a software product that yields a binary pass/fail result.

Why we Test

The value of a test lies in what it tells you when it runs. Depending on the kind of test, and whether it passes or fails, it could tell you:

Testing Terminology

There is a bewildering variety of terms for various kinds of software tests and methodologies. Some of the distinctions are subtle and philosophical. With all that, the terminology seems incomplete - there are distinctions which seem worthy of distinction, where I've not yet been able to find a commonly used term. For these, I've invented a name.

Kinds/properties of tests

Primary Taxonomy

Different kinds of test are classified in a hierarchy or progression, where there are ones that are in some sense "lower level" that others. From lower to higher (vaguely):

Secondary Taxonomies

Various other terminology, variously applied:

Other Terms

Analysis

Breaking this down according to the kind of test, I think the following are true:

End-to-End Tests

End-to-End tests seem more like Health Checks than tests per se. Having them run against released software would increase the value of running them as tests against pre-released software. If the live test works, but the pre-release test does not, it suggests that any issue is not simply connectivity or a downstream service dependency.

On the other hand, I think manual testing has a place in testing UI code. An API should have well-enough defined behavior so that it is testable, and since it is intended for use by software, rather than humans, tests are naturally automatable. So for a UI manual testing (augmented where useful by automation) has a place. I could see this being very useful when testing across multiple browser configurations.

References