Difference between revisions of "Checkit"

From HaskellWiki
Jump to navigation Jump to search
(Checkit summary page)
 
m
Line 6: Line 6:
   
 
=== Test Data Generation ===
 
=== Test Data Generation ===
  +
 
* Generalized data structure generation
+
* Generalized data structure generation
* Automatic shrink for any data type that is checkable
+
* Automatic shrink for any data type that is checkable
* Whole-test argument capture and reply
+
* Whole-test argument capture and reply
* support for test data containing partially defined data
+
* support for test data containing partially defined data
   
 
=== Running Tests ===
 
=== Running Tests ===
   
* Parallelism support for multicore
+
* Parallelism support for multicore
* Timeout support
+
* Timeout support
* Test timing and timing sanity checking support
+
* Test timing and timing sanity checking support
* partial application efficiency checking
+
* partial application efficiency checking
* integration with the Dynamic HPC interface (run tests until no new coverage is being found, for example)
+
* integration with the Dynamic HPC interface (run tests until no new coverage is being found, for example)
   
 
=== Reporting Tests ===
 
=== Reporting Tests ===
 
 
* ASCII
+
* ASCII
* XML and HTML
+
* XML and HTML
* Custom reports
+
* Custom reports
 
   
 
Checkit is being actively developed at the University of Kansas.
 
Checkit is being actively developed at the University of Kansas.

Revision as of 15:41, 23 August 2008

Checkit is a toolkit for building QuickCheck style libraries, and is offered as an alternative to cloning and modifying QuickCheck.

Like QuickCheck, it uses a prop_ style list of properties, written in Haskell.

Highlights

Test Data Generation

  • Generalized data structure generation
  • Automatic shrink for any data type that is checkable
  • Whole-test argument capture and reply
  • support for test data containing partially defined data

Running Tests

  • Parallelism support for multicore
  • Timeout support
  • Test timing and timing sanity checking support
  • partial application efficiency checking
  • integration with the Dynamic HPC interface (run tests until no new coverage is being found, for example)

Reporting Tests

  • ASCII
  • XML and HTML
  • Custom reports

Checkit is being actively developed at the University of Kansas.