diff options
Diffstat (limited to 'cpp/test/IceUtil/priority/TestBase.cpp')
-rw-r--r-- | cpp/test/IceUtil/priority/TestBase.cpp | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/cpp/test/IceUtil/priority/TestBase.cpp b/cpp/test/IceUtil/priority/TestBase.cpp new file mode 100644 index 00000000000..2b3abb0ce62 --- /dev/null +++ b/cpp/test/IceUtil/priority/TestBase.cpp @@ -0,0 +1,46 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +#include <IceUtil/IceUtil.h> + +#include <TestBase.h> + +using namespace std; + +TestFailed::TestFailed(const std::string& n) : + name(n) +{ +} + +TestBase::TestBase(const std::string& n) : + _name(n) +{ +} + +string +TestBase::name() const +{ + return _name; +} + +void +TestBase::start() +{ + cout << "running " << _name << " test... " << flush; + try + { + run(); + } + catch(const IceUtil::Exception& e) + { + cout << e << " failed" << endl; + throw TestFailed(_name); + } + cout << "ok" << endl; +} |