mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-15 15:21:03 +01:00
b0581433a7
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
44 lines
746 B
C++
44 lines
746 B
C++
//
|
|
// PartialStreamTest.h
|
|
//
|
|
// $Id: //poco/1.4/Zip/testsuite/src/PartialStreamTest.h#1 $
|
|
//
|
|
// Definition of the PartialStreamTest class.
|
|
//
|
|
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef PartialStreamTest_INCLUDED
|
|
#define PartialStreamTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Zip/Zip.h"
|
|
#include "CppUnit/TestCase.h"
|
|
|
|
|
|
class PartialStreamTest: public CppUnit::TestCase
|
|
{
|
|
public:
|
|
PartialStreamTest(const std::string& name);
|
|
~PartialStreamTest();
|
|
|
|
void testReading();
|
|
void testWriting();
|
|
void testWritingZero();
|
|
void testWritingOne();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
#endif // PartialStreamTest_INCLUDED
|