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