mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-15 01:07:12 +01:00
40 lines
624 B
C
40 lines
624 B
C
|
//
|
||
|
// TeeStreamTest.h
|
||
|
//
|
||
|
// Definition of the TeeStreamTest class.
|
||
|
//
|
||
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#ifndef TeeStreamTest_INCLUDED
|
||
|
#define TeeStreamTest_INCLUDED
|
||
|
|
||
|
|
||
|
#include "Poco/Foundation.h"
|
||
|
#include "CppUnit/TestCase.h"
|
||
|
|
||
|
|
||
|
class TeeStreamTest: public CppUnit::TestCase
|
||
|
{
|
||
|
public:
|
||
|
TeeStreamTest(const std::string& name);
|
||
|
~TeeStreamTest();
|
||
|
|
||
|
void testTeeInputStream();
|
||
|
void testTeeOutputStream();
|
||
|
|
||
|
void setUp();
|
||
|
void tearDown();
|
||
|
|
||
|
static CppUnit::Test* suite();
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // TeeStreamTest_INCLUDED
|