mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-27 03:43:25 +01:00
ce797f7700
Signed-off-by: FrancisANDRE <zosrothko@orange.fr>
30 lines
542 B
C++
30 lines
542 B
C++
//
|
|
// SharedLibraryTestSuite.h
|
|
//
|
|
// $Id: //poco/1.4/Foundation/testsuite/src/SharedLibraryTestSuite.h#1 $
|
|
//
|
|
// Definition of the SharedLibraryTestSuite class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef SharedLibraryTestSuite_INCLUDED
|
|
#define SharedLibraryTestSuite_INCLUDED
|
|
|
|
|
|
#include "Poco/CppUnit/TestSuite.h"
|
|
|
|
|
|
class SharedLibraryTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // SharedLibraryTestSuite_INCLUDED
|