mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-03-17 17:47:13 +01:00
23 lines
435 B
C++
23 lines
435 B
C++
|
//
|
||
|
// FTPClientTestSuite.cpp
|
||
|
//
|
||
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#include "FTPSClientTestSuite.h"
|
||
|
#include "FTPSClientSessionTest.h"
|
||
|
|
||
|
|
||
|
CppUnit::Test* FTPSClientTestSuite::suite()
|
||
|
{
|
||
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("FTPSClientTestSuite");
|
||
|
|
||
|
pSuite->addTest(FTPSClientSessionTest::suite());
|
||
|
|
||
|
return pSuite;
|
||
|
}
|