22#ifndef ROBOTTESTINGFRAMEWORK_FIXTUREMANAGER_H
23#define ROBOTTESTINGFRAMEWORK_FIXTUREMANAGER_H
82 std::string
param =
"");
104 virtual bool setup(
int argc,
char** argv);
virtual void fixtureCollapsed(TestMessage reason)=0
fixtureCollapsed is called by a fixture manager to inform the test suite that the corresponding fixtu...
The FixtureManager can be used to to setup any fixture which is required for the tests before executi...
FixtureManager(FixtureEvents *dispatcher, std::string param="")
FixtureManager constructor The parameter string is parsed into (argc/argv) format and will be passed ...
virtual void tearDown()
tearDown is called after to stop the fixture manager
virtual ~FixtureManager()
FixtureManager destructor.
std::string getParam()
getParam gets the original parameter string which is set for the fixture manager
virtual bool check()
check if the fixture is okay.
FixtureEvents * getDispatcher()
getResult returns an instance of FixtureEvents dispatcher
FixtureManager(std::string param="")
FixtureManager constructor The parameter string is parsed into (argc/argv) format and will be passed ...
virtual bool setup(int argc, char **argv)
setup is called to start the fixture manager
bool setup()
setup is called by a test suite.
void setDispatcher(FixtureEvents *dispatcher)
setDispatcher Sets the FixtureEvents dispatcher
FixtureEvents * dispatcher
void setParam(const std::string param)
setParam Sets the optional parameters of the fixture manager.
A formated message with details.