mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-20 22:31:23 +01:00
40 lines
658 B
C++
40 lines
658 B
C++
//
|
|
// QuotedPrintableTest.h
|
|
//
|
|
// Definition of the QuotedPrintableTest class.
|
|
//
|
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef QuotedPrintableTest_INCLUDED
|
|
#define QuotedPrintableTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Net/Net.h"
|
|
#include "Poco/CppUnit/TestCase.h"
|
|
|
|
|
|
class QuotedPrintableTest: public CppUnit::TestCase
|
|
{
|
|
public:
|
|
QuotedPrintableTest(const std::string& name);
|
|
~QuotedPrintableTest();
|
|
|
|
void testEncode();
|
|
void testDecode();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
#endif // QuotedPrintableTest_INCLUDED
|