mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 03:20:11 +01:00
30 lines
488 B
C++
30 lines
488 B
C++
//
|
|
// BufferTestSuite.h
|
|
//
|
|
// $Id: //poco/1.6/Foundation/testsuite/src/BufferTestSuite.h#1 $
|
|
//
|
|
// Definition of the BufferTestSuite class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef BufferTestSuite_INCLUDED
|
|
#define BufferTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class BufferTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // BufferTestSuite_INCLUDED
|