OTest2
A C++ testing framework
|
Generic interface of a function marshaler. More...
#include <fcemarshaler.h>
Public Member Functions | |
FceMarshaler () | |
Ctor. More... | |
virtual | ~FceMarshaler () |
Dtor. More... | |
FceMarshaler (const FceMarshaler &)=delete | |
FceMarshaler & | operator= (const FceMarshaler &)=delete |
virtual void | runFunction (const Context &context_)=0 |
Run the function. More... | |
Generic interface of a function marshaler.
Function marshalers run user functions (start-up, tear-down and test states) and passes user data as their arguments. The actual marshalers are generated by the otest2 generator.
Definition at line 38 of file fcemarshaler.h.
OTest2::FceMarshaler::FceMarshaler | ( | ) |
Ctor.
Definition at line 24 of file fcemarshaler.cpp.
|
virtual |
Dtor.
Definition at line 28 of file fcemarshaler.cpp.
|
delete |
|
delete |
|
pure virtual |
Run the function.
context_ | OTest2 context |
Implemented in OTest2::EmptyMarshaler.