Home

Awesome

FQC - FiFo Quickcheck helper

A set of helpers for running EQC. It uses the same logic as quickcheck-ci.org to determine what tests to run (functions ending with _prop) and wraps it in a eunit test suite.

Some functions are provided for additional generators. Also it offers colored output for tests instead of the default printing of results.

Simply put -include_lib("fqc/include/fqc.hrl"). in your file.

In addition to that some variables can be -defined:

Statemachien visualisation

The eqc_dot module provides a function to generate .dot files for graphviz from symbolic statemachine commands.

The main function is eqc_gv:to_dot/2 where the first argument is the list symbilic commands and the second the failed command:

file:write_file("/Users/heinz/test.dot", eqc_gv:to_dot(eqc_gv:example_data(), 6)).