summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/priority/TestBase.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceUtil/priority/TestBase.h')
-rw-r--r--cpp/test/IceUtil/priority/TestBase.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/cpp/test/IceUtil/priority/TestBase.h b/cpp/test/IceUtil/priority/TestBase.h
new file mode 100644
index 00000000000..7d8edd61ba0
--- /dev/null
+++ b/cpp/test/IceUtil/priority/TestBase.h
@@ -0,0 +1,43 @@
+// **********************************************************************
+//
+// 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.
+//
+// **********************************************************************
+
+#ifndef TEST_BASE_H
+#define TEST_BASE_H
+
+#include <IceUtil/Shared.h>
+#include <IceUtil/Handle.h>
+
+class TestFailed
+{
+public:
+
+ TestFailed(const std::string&);
+
+ const std::string name;
+};
+
+class TestBase : public IceUtil::Shared
+{
+public:
+
+ TestBase(const std::string&);
+
+ std::string name() const;
+ void start();
+
+protected:
+
+ virtual void run() = 0;
+
+ const std::string _name;
+};
+
+typedef IceUtil::Handle<TestBase> TestBasePtr;
+
+#endif