diff options
Diffstat (limited to 'cpp/test/IceUtil/thread/TestSuite.h')
-rw-r--r-- | cpp/test/IceUtil/thread/TestSuite.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/cpp/test/IceUtil/thread/TestSuite.h b/cpp/test/IceUtil/thread/TestSuite.h new file mode 100644 index 00000000000..6441815a6e9 --- /dev/null +++ b/cpp/test/IceUtil/thread/TestSuite.h @@ -0,0 +1,22 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#ifndef TEST_SUITE_H +#define TEST_SUITE_H + +#include <TestBase.h> +#include <list> + +extern std::list<TestBasePtr> allTests; + +void InitializeTestSuite(); + +#endif + |