Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

eunit(3erl) [linux man page]

eunit(3erl)						     Erlang Module Definition						       eunit(3erl)

NAME
eunit - 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. Example: eunit:test(fred) runs all tests in the module fred and also any tests in the module fred_tests , if that module exists. Options: verbose : Displays more details about the running tests. Options in the environment variable EUNIT are also included last in the option list, i.e., have lower precedence than those in Options . See also: test/1 . AUTHORS
Micka&euml;l R&eacute;mond <mickael.remond@process-one.net > Richard Carlsson <richardc@it.uu.se > eunit 2.1.6 eunit(3erl)

Check Out this Related Man Page

ct_master(3erl) 					     Erlang Module Definition						   ct_master(3erl)

NAME
ct_master - Distributed test execution control for Common Test. DESCRIPTION
Distributed test execution control for Common Test. This module exports functions for running Common Test nodes on multiple hosts in parallel. EXPORTS
abort() -> ok Stops all running tests. abort(Nodes) -> ok Types Nodes = atom() | [atom()] Stops tests on specified nodes. progress() -> [{Node, Status}] Types Node = atom() Status = finished_ok | ongoing | aborted | {error, Reason} Reason = term() Returns test progress. If Status is ongoing , tests are running on the node and have not yet finished. run(TestSpecs) -> ok Types TestSpecs = string() | [SeparateOrMerged] Equivalent to run(TestSpecs, false, [], []) . run(TestSpecs, InclNodes, ExclNodes) -> ok Types TestSpecs = string() | [SeparateOrMerged] SeparateOrMerged = string() | [string()] InclNodes = [atom()] ExclNodes = [atom()] Equivalent to run(TestSpecs, false, InclNodes, ExclNodes) . run(TestSpecs, AllowUserTerms, InclNodes, ExclNodes) -> ok Types TestSpecs = string() | [SeparateOrMerged] SeparateOrMerged = string() | [string()] AllowUserTerms = bool() InclNodes = [atom()] ExclNodes = [atom()] Tests are spawned on the nodes as specified in TestSpecs . Each specification in TestSpec will be handled separately. It is however possible to also specify a list of specifications that should be merged into one before the tests are executed. Any test without a particular node specification will also be executed on the nodes in InclNodes . Nodes in the ExclNodes list will be excluded from the test. run_on_node(TestSpecs, Node) -> ok Types TestSpecs = string() | [SeparateOrMerged] SeparateOrMerged = string() | [string()] Node = atom() Equivalent to run_on_node(TestSpecs, false, Node) . run_on_node(TestSpecs, AllowUserTerms, Node) -> ok Types TestSpecs = string() | [SeparateOrMerged] SeparateOrMerged = string() | [string()] AllowUserTerms = bool() Node = atom() Tests are spawned on Node according to TestSpecs . run_test(Node, Opts) -> ok Types Node = atom() Opts = [OptTuples] OptTuples = {config, CfgFiles} | {dir, TestDirs} | {suite, Suites} | {testcase, Cases} | {spec, TestSpecs} | {allow_user_terms, Bool} | {logdir, LogDir} | {event_handler, EventHandlers} | {silent_connections, Conns} | {cover, Cover- SpecFile} | {userconfig, UserCfgFiles} CfgFiles = string() | [string()] TestDirs = string() | [string()] Suites = atom() | [atom()] Cases = atom() | [atom()] TestSpecs = string() | [string()] LogDir = string() EventHandlers = EH | [EH] EH = atom() | {atom(), InitArgs} | {[atom()], InitArgs} InitArgs = [term()] Conns = all | [atom()] Tests are spawned on Node using ct:run_test/1 . AUTHORS
<> common_test 1.5.3 ct_master(3erl)
Man Page