]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/testPackableStream.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / tests / testPackableStream.h
CommitLineData
4e0938ef 1/*
f70aedc4 2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
4e0938ef
AJ
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
c21ad0f5 8
7e10ac87
AJ
9#ifndef SQUID_SRC_TESTS_TESTPACKABLESTREAM_H
10#define SQUID_SRC_TESTS_TESTPACKABLESTREAM_H
c21ad0f5 11
0cde91ae 12#include "compat/cppunit.h"
c21ad0f5 13
14/*
7e10ac87 15 * test PackableStream
c21ad0f5 16 */
17
7e10ac87 18class testPackableStream : public CPPUNIT_NS::TestFixture
c21ad0f5 19{
7e10ac87 20 CPPUNIT_TEST_SUITE( testPackableStream );
c21ad0f5 21 CPPUNIT_TEST( testGetStream );
22 CPPUNIT_TEST_SUITE_END();
23
24public:
16555581 25 void setUp();
c21ad0f5 26
27protected:
28 void testGetStream();
29};
30
7e10ac87 31#endif /* SQUID_SRC_TESTS_TESTPACKABLESTREAM_H */
c21ad0f5 32