mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
30 lines
502 B
C++
30 lines
502 B
C++
//
|
|
// FTPClientTestSuite.h
|
|
//
|
|
// $Id: //poco/svn/Net/testsuite/src/FTPClientTestSuite.h#2 $
|
|
//
|
|
// 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 "CppUnit/TestSuite.h"
|
|
|
|
|
|
class FTPClientTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // FTPClientTestSuite_INCLUDED
|