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