mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-20 22:31:23 +01:00
28 lines
442 B
C++
28 lines
442 B
C++
//
|
|
// FTPClientTestSuite.h
|
|
//
|
|
// Definition of the FTPClientTestSuite class.
|
|
//
|
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef FTPClientTestSuite_INCLUDED
|
|
#define FTPClientTestSuite_INCLUDED
|
|
|
|
|
|
#include "Poco/CppUnit/TestSuite.h"
|
|
|
|
|
|
class FTPClientTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // FTPClientTestSuite_INCLUDED
|