mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-18 15:33:08 +02:00
28 lines
425 B
C++
28 lines
425 B
C++
//
|
|
// StreamsTestSuite.h
|
|
//
|
|
// Definition of the StreamsTestSuite class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef StreamsTestSuite_INCLUDED
|
|
#define StreamsTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class StreamsTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // StreamsTestSuite_INCLUDED
|