mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-11-04 20:47:56 +00:00
28 lines
443 B
C++
28 lines
443 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 FTPSClientTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // FTPClientTestSuite_INCLUDED
|