Software testability is the degree to which a software artifact (e.g. a software system, module, requirement, or design document) supports testing in a given test context. If the testability of an artifact is high, then finding faults in the system (if any) by means of testing is easier.
Formally, some systems are testable, and some are not. This classification can be achieved by noticing that, to be testable, for a functionality of the system under test "S", which takes input "I", a computable functional predicate "V" must exists such that V ( S , I ) {\displaystyle V(S,I)} is true when S, given input I, produce a valid output, false otherwise. This function "V" is known as the verification function for the system with input I.
Many software systems are untestable, or not immediately testable. For example, Google's ReCAPTCHA, without having any metadata about the images is not a testable system. Recaptcha, however, can be immediately tested if for each image shown, there is a tag stored elsewhere. Given this meta information, one can test the system.
Therefore, testability is often thought of as an extrinsic property which results from interdependency of the software to be tested and the test goals, test methods used, and test resources (i.e., the test context). Even though testability can not be measured directly (such as software size) it should be considered an intrinsic property of a software artifact because it is highly correlated with other key software qualities such as encapsulation, coupling, cohesion, and redundancy.
The correlation of 'testability' to good design can be observed by seeing that code that has weak cohesion, tight coupling, redundancy and lack of encapsulation is difficult to test.[1]
A lower degree of testability results in increased test effort. In extreme cases a lack of testability may hinder testing parts of the software or software requirements at all.
Testability, a property applying to empirical hypothesis, involves two components. The effort and effectiveness of software tests depends on numerous factors including:
The testability of software components (modules, classes) is determined by factors such as:
The testability of software components can be improved by:
Requirements need to fulfill the following criteria in order to be testable:
Treating the requirement as axioms, testability can be treated via asserting existence of a function F S {\displaystyle F_{S}} (software) such that input I k {\displaystyle I_{k}} generates output O k {\displaystyle O_{k}} , therefore F S : I → O {\displaystyle F_{S}:I\to O} . Therefore, the ideal software generates the tuple ( I k , O k ) {\displaystyle (I_{k},O_{k})} which is the input-output set Σ {\displaystyle \Sigma } , standing for specification.
Now, take a test input I t {\displaystyle I_{t}} , which generates the output O t {\displaystyle O_{t}} , that is the test tuple τ = ( I t , O t ) {\displaystyle \tau =(I_{t},O_{t})} . Now, the question is whether or not τ ∈ Σ {\displaystyle \tau \in \Sigma } or τ ∉ Σ {\displaystyle \tau \not \in \Sigma } . If it is in the set, the test tuple τ {\displaystyle \tau } passes, else the system fails the test input. Therefore, it is of imperative importance to figure out : can we or can we not create a function that effectively translates into the notion of the set indicator function for the specification set Σ {\displaystyle \Sigma } .
By the notion, 1 Σ {\displaystyle 1_{\Sigma }} is the testability function for the specification Σ {\displaystyle \Sigma } . The existence should not merely be asserted, should be proven rigorously. Therefore, obviously without algebraic consistency, no such function can be found, and therefore, the specification cease to be termed as testable.