Browse Subversion Repository
Contents of /common/TestPointerRingBuffer.h
Parent Directory
| Revision Log
Revision 125 -
( show annotations)
( download)
( as text)
Sun Oct 28 15:37:33 2007 UTC
(16 years, 5 months ago)
by satofumi
File MIME type: text/x-chdr
File size: 598 byte(s)
add some dox files.
| 1 |
#ifndef TEST_POINTER_RING_BUFFER_H |
| 2 |
#define TEST_POINTER_RING_BUFFER_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief PointerRingBuffer のテスト |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <cppunit/extensions/HelperMacros.h> |
| 14 |
|
| 15 |
|
| 16 |
/*! |
| 17 |
\brief PointerRingBuffer のテストクラス |
| 18 |
*/ |
| 19 |
class PointerRingBufferTest : public CppUnit::TestFixture { |
| 20 |
CPPUNIT_TEST_SUITE(PointerRingBufferTest); |
| 21 |
CPPUNIT_TEST(compileTest); |
| 22 |
CPPUNIT_TEST(resizeTest); |
| 23 |
CPPUNIT_TEST(putTest); |
| 24 |
CPPUNIT_TEST_SUITE_END(); |
| 25 |
|
| 26 |
public: |
| 27 |
void compileTest(void); |
| 28 |
void resizeTest(void); |
| 29 |
void putTest(void); |
| 30 |
}; |
| 31 |
|
| 32 |
#endif /* !TEST_POINTER_RING_BUFFER_H */ |
|