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