cth_readable
cth_readable copied to clipboard
Common Test hooks for more readable logs
When fetching the package from hex.pm, the tests are missing. Thus one can not check whether the package is actually working (passing tests) in the own environment. Please add the...
Given the following suite `foo_SUITE`: ```erl -module(foo_SUITE). -export([ suite/0, all/0, groups/0, init_per_suite/1, end_per_suite/1, init_per_group/2, end_per_group/2, init_per_testcase/2, end_per_testcase/2 ]). -export([a/1, b/1, c/1]). suite() -> [{timetrap, {seconds, 10}}]. init_per_suite(Config) -> Config. end_per_suite(_Config)...