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

wxBufferedDC(3erl)					     Erlang Module Definition						wxBufferedDC(3erl)

NAME
wxBufferedDC - See external documentation: wxBufferedDC. DESCRIPTION
See external documentation: wxBufferedDC . This class is derived (and can use functions) from: wxMemoryDC wxDC DATA TYPES
wxBufferedDC() : An object reference, The representation is internal and can be changed without notice. It can't be used for comparsion stored on disc or distributed for use on other nodes. EXPORTS
new() -> wxBufferedDC() See external documentation . new(Dc::wxDC() (see module wxDC)) -> wxBufferedDC() Equivalent to new(Dc, []) . new(Dc::wxDC() (see module wxDC), X::term()) -> wxBufferedDC() See external documentation . Alternatives: new(Dc::wxDC:wxDC(), Area::{W::integer(),H::integer()}) -> new(Dc,Area, []) new(Dc::wxDC:wxDC(), [Option]) -> wxBufferedDC() Option = {buffer, wxBitmap:wxBitmap()} | {style, integer()} new(Dc::wxDC() (see module wxDC), Area::{W::integer(), H::integer()}, Options::[Option]) -> wxBufferedDC() Types Option = {style, integer()} See external documentation . init(This::wxBufferedDC(), Dc::wxDC() (see module wxDC)) -> ok Equivalent to init(This, Dc, []) . init(This::wxBufferedDC(), Dc::wxDC() (see module wxDC), X::term()) -> ok See external documentation . Alternatives: init(This::wxBufferedDC(), Dc::wxDC:wxDC(), Area::{W::integer(),H::integer()}) -> init(This,Dc,Area, []) init(This::wxBufferedDC(), Dc::wxDC:wxDC(), [Option]) -> ok Option = {buffer, wxBitmap:wxBitmap()} | {style, integer()} init(This::wxBufferedDC(), Dc::wxDC() (see module wxDC), Area::{W::integer(), H::integer()}, Options::[Option]) -> ok Types Option = {style, integer()} See external documentation . destroy(This::wxBufferedDC()) -> ok Destroys this object, do not use object again AUTHORS
<> wxErlang 0.98.9 wxBufferedDC(3erl)
Man Page