1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-24 05:37:14 +01:00
SqMod/vendor/POCO/Foundation/testsuite/src/DataURIStreamTest.h

38 lines
636 B
C
Raw Normal View History

//
// DataURIStreamTest.h
//
// Definition of the DataURItreamTest class.
//
// Copyright (c) 2019, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef DataURIStreamTest_INCLUDED
#define DataURIStreamTest_INCLUDED
#include "CppUnit/TestCase.h"
class DataURIStreamTest: public CppUnit::TestCase
{
public:
DataURIStreamTest(const std::string& name);
~DataURIStreamTest();
void testWithBase64();
void testWithoutBase64();
void testZeroLengthData();
void setUp();
void tearDown();
static CppUnit::Test* suite();
};
#endif // DataURIStreamTest_INCLUDED