triq icon indicating copy to clipboard operation
triq copied to clipboard

Integrate with code coverage?

Open linearregression opened this issue 9 years ago • 1 comments

Is there any documentation of showing that the results are integrated with code coverage? For example, would like to see that the tests will add to coder coverage with unit and common tests.

linearregression avatar Feb 12 '16 20:02 linearregression

Just run your property-based test from eUnit and use that to monitor coverage?

E.g. add this to your property module, and run eunit:

property_test() -> true == check().

and enable code coverage in rebar3 config:

{cover_enabled, true}.

drozzy avatar Apr 06 '16 23:04 drozzy