Browse Subversion Repository
Contents of /connection/TestUdpipCtrl.h
Parent Directory
| Revision Log
Revision 247 -
( show annotations)
( download)
( as text)
Tue Feb 19 01:32:43 2008 UTC
(16 years, 1 month ago)
by satofumi
File MIME type: text/x-chdr
File size: 549 byte(s)
adjuste unknown collision.
| 1 |
#ifndef TEST_UDPIP_CTRL_H |
| 2 |
#define TEST_UDPIP_CTRL_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief UdpipCtrl のテスト |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <cppunit/extensions/HelperMacros.h> |
| 14 |
|
| 15 |
|
| 16 |
/*! |
| 17 |
\brief UdpipCtrl のテストクラス |
| 18 |
*/ |
| 19 |
class UdpipCtrlTest : public CppUnit::TestFixture { |
| 20 |
CPPUNIT_TEST_SUITE(UdpipCtrlTest); |
| 21 |
CPPUNIT_TEST(readWriteTest); |
| 22 |
CPPUNIT_TEST(bindTest); |
| 23 |
//CPPUNIT_TEST(bufferTest); |
| 24 |
CPPUNIT_TEST_SUITE_END(); |
| 25 |
|
| 26 |
public: |
| 27 |
void readWriteTest(void); |
| 28 |
void bindTest(void); |
| 29 |
//void bufferTest(void); |
| 30 |
}; |
| 31 |
|
| 32 |
#endif /* !TEST_UDPIP_CTRL_H */ |
|