mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-25 06:36:37 +01:00
30 lines
509 B
C++
Executable File
30 lines
509 B
C++
Executable File
//
|
|
// ThreadingTestSuite.h
|
|
//
|
|
// $Id: //poco/1.4/Foundation/testsuite/src/ThreadingTestSuite.h#1 $
|
|
//
|
|
// Definition of the ThreadingTestSuite class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef ThreadingTestSuite_INCLUDED
|
|
#define ThreadingTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class ThreadingTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // ThreadingTestSuite_INCLUDED
|