Linear code sequence and jump

Linear code sequence and jump (LCSAJ) is a software analysis method used to identify structural units in code under test. Its primary use is with dynamic software analysis to help answer the question "How much testing is enough?".[1] Dynamic software analysis is used to measure the quality and efficacy of software test data, where the quantification is performed in terms of structural units of the code under test. When used to quantify the structural units exercised by a given set of test data, dynamic analysis is also referred to as coverage analysis.

Contents

History

The LCSAJ analysis method was devised by Professor Michael Hennell in order to perform quality assessments on the mathematical libraries on which his nuclear physics research at the University of Liverpool depended.[2][3] Professor Hennell later founded the Liverpool Data Research Associates (LDRA) company to commercialize the software test-bed produced for this work, resulting in the LDRA Testbed product.

Introduced in 1976, the LCSAJ[4] is now also referred to as the jump-to-jump path (JJ-path).[5]

Definition

An LCSAJ is a software code path fragment consisting of a sequence of code (a linear code sequence, or basic block) followed by a control flow Jump, and consists of the following three items [6]:

When used for coverage analysis, LCSAJs are considered to have a test effectiveness ratio of 3.

Test effectiveness ratio

Coverage analysis metrics are used to gauge how much testing has been achieved. The most basic metric is the proportion of statements executed, considered to have a Test Effectiveness Ratio (TER) of one [7]:

TER1 = \frac{number\;of\;statements\;executed\;by\;the\;test\;data}{total\;number\;of\;executable statements}

Higher level coverage metrics can also be generated, in particular [8]:

TER2 = \frac{number\;of\;control-flow\;branches\;executed\;by\;the\;test\;data}{total\;number\;of\;control-flow\;branches}

TER3 = \frac{number\;of\;LCSAJs\;executed\;by\;the\;test\;data}{total\;number\;of\;LCSAJs}

These metrics satisfy a pure hierarchy, whereby when TER3 = 100% has been achieved it follows that TER2 = 100% and TER1 = 100% have also been achieved.

Both the TER1 & TER2 metrics were in use in the 1940s and the third dates from the 1970s. The requirements for achieving TER1 = 100% became an industrial norm during the late 1960s, and was the level originally selected for the DO-178 avionics standard until it was supplemented by the MCDC (modified condition/decision coverage) additional requirement in 1992.[9] Higher levels TER3 = 100% have been mandated for many other projects, including aerospace, telephony and banking.

Example

Consider the following C code[10]:

  1. #include    <stdlib.h>
    
  2. #include    <string.h>
    
  3. #include    <math.h>
    
  4.  
    
  5. #define MAXCOLUMNS  26
    
  6. #define MAXROW      20
    
  7. #define MAXCOUNT    90
    
  8. #define ITERATIONS  750
    
  9.  
    
  10. int main (void)
    
  11. {
    
  12.     int count = 0, totals[MAXCOLUMNS], val = 0;
    
  13.  
    
  14.     memset (totals, 0, MAXCOLUMNS * sizeof(int));
    
  15.  
    
  16.     count = 0;
    
  17.     while ( count < ITERATIONS )
    
  18.     {
    
  19.         val = abs(rand()) % MAXCOLUMNS;
    
  20.         totals[val] += 1;
    
  21.         if ( totals[val] > MAXCOUNT )
    
  22.         {
    
  23.             totals[val] = MAXCOUNT;
    
  24.         }
    
  25.         count++;
    
  26.     }
    
  27.  
    
  28.     return (0);
    
  29.  
    
  30. }
    

From this code, the following is a complete list of the LCSAJ triples for this code

LCSAJ Number Start Line Finish Line Jump To Line
1 10 17 28
2 10 21 25
3 10 26 17
4 17 17 28
5 17 21 25
6 17 26 17
7 25 26 17
8 28 28 −1

A coverage level of TER3 = 100% would be achieved when test data is used that causes the execution of each of these LCSAJs at least once.

From this example it can be seen that the basic block identified by an LCSAJ triple may span a decision point, reflecting the conditions that must be in place in order for the LCSAJ to be executed. For instance, LCSAJ 2 for the above example includes the 'while' statement where the condition '(count < ITERATIONS)' evaluates to TRUE.

In addition, it can also be seen that each line of code has an LCSAJ 'density' associated with it; line 17, for instance, appears within 6 unique LCSAJs - i.e. it has an LCSAJ density of 6.

This is helpful when evaluating the maintainability of the code; If a line of code is to be changed then the density is indicative of how many LCSAJs will be affected by that change.

References

  1. ^ M.A.Hennell, D.Hedley and M.R.Woodward, "Quantifying the test effectiveness of Algol 68 programs", Proceedings of the Strathclyde ALGOL 68 conference 1977, pp. 36 – 41, ISSN 0362-1340
  2. ^ M. A. Hennell, An experimental testbed for numerical software. {I}. {Fortran}, The Computer Journal 21(4):333--336, @nov, 1978
  3. ^ M. A. Hennell and D. Hedley, An experimental testbed for numerical software. {II}. {ALGOL 68}, The Computer Journal 22(1):53--56, @feb, 1979
  4. ^ M.A. Hennell, M.R.Woodward and D.Hedley, "On program analysis", Information Processing Letters, 5(5), pp. 136 – 140, 1976
  5. ^ M. R. Woodward, M. A. Hennell, "On the relationship between two control-flow coverage criteria: all JJ-paths and MCDC", Information and Software Technology 48 (2006) pp. 433–440
  6. ^ M.A.Hennell, D.Hedley and I.J.Riddell, "Assessing a Class of Software Tools", Proceedings of the 7th International Conference on Software Engineering March 1984, pp. 266 – 277. ISBN 0270-5257
  7. ^ J.R.Brown, "Practical Application of Automated Software Tools", TRW Report No. TRW-SS-72-05, presented at WESCON, 1972
  8. ^ M.R.Woodward, D.Hedley and M.A.Hennell, “Experience with Path Analysis and Testing of Programs”, IEEE Transactions on Software Engineering, Vol. 6, No. 3, pp. 278 – 286, May 1980
  9. ^ Software Considerations in Airborne System and Equipment Certificaton-RTCA/DO-178B, RTCA Inc., Washington D.C., December 1992
  10. ^ British Standard BS7925-2 "Standard for Software Component Testing" Annex B "Guidelines for Testing and Test Measurement" (http://www.bsigroup.com/en/Shop/Publication-Detail/?pid=000000000001448026)