1 #include "TestAppBase.h"
3 TestAppBase::TestAppBase(const char* name
)
9 TestAppBase::~TestAppBase()
15 TestAppBase::name() const
17 return this->name_
.c_str();
22 TestAppBase::run(int argc
, ACE_TCHAR
* argv
[])
24 int rc
= this->run_i(argc
, argv
);
26 // Convert 1 to 0. Leave 0 and -1 as they are.
27 return (rc
== 1) ? 0 : rc
;