eunit
eunit
Module
eunit
Module summary
This module is the main EUnit user interface.
Description
This module is the main EUnit user interface.
Exports
start() -> term()
Starts the EUnit server. Normally, you don't need to call this function; it is started automatically.
stop() -> term()
Stops the EUnit server. Normally, you don't need to call this function.
test(Tests) -> term()
Equivalent to test(Tests, [])
.
test(Tests::term(), Options::[term()]) -> ok | {error, term()}
Runs a set of tests. The format of Tests
is described in the section EUnit test representation
of the overview.