1//
2// MailStreamTest.h
3//
4// Definition of the MailStreamTest class.
5//
6// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
7// and Contributors.
8//
9// SPDX-License-Identifier: BSL-1.0
10//
11
12
13#ifndef MailStreamTest_INCLUDED
14#define MailStreamTest_INCLUDED
15
16
17#include "Poco/Net/Net.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class MailStreamTest: public CppUnit::TestCase
22{
23public:
24 MailStreamTest(const std::string& name);
25 ~MailStreamTest();
26
27 void testMailInputStream();
28 void testMailOutputStream();
29
30 void setUp();
31 void tearDown();
32
33 static CppUnit::Test* suite();
34
35private:
36};
37
38
39#endif // MailStreamTest_INCLUDED
40