Eclat: Automatic generation and classification of test inputs

Download: PDF, slides (PDF), slides (PowerPoint), Eclat implementation, Randoop implementation.

“Eclat: Automatic generation and classification of test inputs” by Carlos Pacheco and Michael D. Ernst. In ECOOP 2005 — Object-Oriented Programming, 19th European Conference, (Glasgow, Scotland), July 2005, pp. 504-527.
A previous version appeared as MIT Laboratory for Computer Science technical report 968, (Cambridge, MA), Oct. 2004.

Abstract

This paper describes a technique that selects, from a large set of test inputs, a small subset likely to reveal faults in the software under test. The technique takes a program or software component, plus a set of correct executions — say, from observations of the software running properly, or from an existing test suite that a user wishes to enhance. The technique first infers an operational model of the software's operation. Then, inputs whose operational pattern of execution differs from the model in specific ways are suggestive of faults. These inputs are further reduced by selecting only one input per operational pattern. The result is a small portion of the original inputs, deemed by the technique as most likely to reveal faults. Thus, the technique can also be seen as an error-detection technique.

The paper describes two additional techniques that complement test input selection. One is a technique for automatically producing an oracle (a set of assertions) for a test input from the operational model, thus transforming the test input into a test case. The other is a classification-guided test input generation technique that also makes use of operational models and patterns. When generating inputs, it filters out code sequences that are unlikely to contribute to legal inputs, improving the efficiency of its search for fault-revealing inputs.

We have implemented these techniques in the Eclat tool, which generates unit tests for Java classes. Eclat's input is a set of classes to test and an example program execution — say, a passing test suite. Eclat's output is a set of JUnit test cases, each containing a potentially fault-revealing input and a set of assertions at least one of which fails. In our experiments, Eclat successfully generated inputs that exposed fault-revealing behavior; we have used Eclat to reveal real errors in programs. The inputs it selects as fault-revealing are an order of magnitude as likely to reveal a fault as all generated inputs.

Download: PDF, slides (PDF), slides (PowerPoint), Eclat implementation, Randoop implementation.

BibTeX entry:

@inproceedings{PachecoE2005,
   author = {Carlos Pacheco and Michael D. Ernst},
   title = {Eclat: Automatic generation and classification of test inputs},
   booktitle = {ECOOP 2005 --- Object-Oriented Programming, 19th European
	Conference},
   pages = {504--527},
   address = {Glasgow, Scotland},
   month = jul,
   year = {2005}
}

(This webpage was created with bibtex2web.)

Back to Michael Ernst's publications.