Browse Subversion Repository
Contents of /connection/TestSocketSet.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: 443 byte(s)
add common/FileToArgs.cpp, common/SearchFilePath.cpp
| 1 |
#ifndef TEST_SOCKET_SET_H |
| 2 |
#define TEST_SOCKET_SET_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief SocketSet のテスト |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <cppunit/extensions/HelperMacros.h> |
| 14 |
|
| 15 |
|
| 16 |
/*! |
| 17 |
\brief SocketSet のテストクラス |
| 18 |
*/ |
| 19 |
class SocketSetTest : public CppUnit::TestFixture { |
| 20 |
CPPUNIT_TEST_SUITE(SocketSetTest); |
| 21 |
CPPUNIT_TEST(readCheckTest); |
| 22 |
CPPUNIT_TEST_SUITE_END(); |
| 23 |
|
| 24 |
public: |
| 25 |
void readCheckTest(void); |
| 26 |
}; |
| 27 |
|
| 28 |
#endif /* !TEST_SOCKET_SET_H */ |
|