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