poco/Net/testsuite/src/QuotedPrintableTest.h
2017-09-09 10:50:32 +02:00

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