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