mirror of
https://github.com/pocoproject/poco.git
synced 2025-03-03 21:06:25 +01:00
25 lines
513 B
C++
25 lines
513 B
C++
//
|
|
// FTPClientTestSuite.cpp
|
|
//
|
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "FTPClientTestSuite.h"
|
|
#include "FTPClientSessionTest.h"
|
|
#include "FTPStreamFactoryTest.h"
|
|
|
|
|
|
CppUnit::Test* FTPClientTestSuite::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("FTPClientTestSuite");
|
|
|
|
pSuite->addTest(FTPClientSessionTest::suite());
|
|
pSuite->addTest(FTPStreamFactoryTest::suite());
|
|
|
|
return pSuite;
|
|
}
|