Factory

A class through which one creates mock objects and manages expectations about calls to their methods.

Destructor

~this
~this()
Undocumented in source.

Members

Functions

mock
auto mock(Args args)

Mocks the type T.

stub
auto stub(Args args)

Stubs the type T.

verify
void verify()

Verifies that certain expectation requirements were satisfied.

Parameters

Options

Mocker $(D_PSYMBOL Options).

See Also

$(D_PSYMBOL Mocker), $(D_PSYMBOL CustomMocker).

Meta