ts_install_cth

TS Installed SCB.

TS Installed SCB

This module does what the make parts of the ts:run/x command did, but not the Makefile.first parts! So they have to be done by ts or manually!!

Functions


id(Opts) -> term()

The id of this SCB

init(Id, Opts) -> term()

Always called before any other callback function.

on_tc_fail(TC, Reason, State) -> term()

Called after a test case failed.

on_tc_skip(TC, Reason, State) -> term()

Called when a test case is skipped.

post_end_per_group(Group, Config, Return, State) -> term()

Called after each end_per_group.

post_end_per_suite(Suite, Config, Return, State) -> term()

Called after end_per_suite.

post_end_per_testcase(TC, Config, Return, State) -> term()

Called after each test case.

post_init_per_group(Group, Config, Return, State) -> term()

Called after each init_per_group.

post_init_per_suite(Suite, Config, Return, State) -> term()

Called after init_per_suite.

pre_end_per_group(Group, Config, State) -> term()

Called after each end_per_group.

pre_end_per_suite(Suite, Config, State) -> term()

Called before end_per_suite.

pre_init_per_group(Group, Config, State) -> term()

Called before each init_per_group.

pre_init_per_suite(Suite, Config, State) -> term()

Called before init_per_suite is called.

pre_init_per_testcase(TC, Config, State) -> term()

Called before each test case.

terminate(State) -> term()

Called when the scope of the SCB is done.

View Functions