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