Browse Subversion Repository
Contents of /common/TestAccessProperty.h
Parent Directory
| Revision Log
Revision 265 -
( show annotations)
( download)
( as text)
Tue Mar 4 10:27:00 2008 UTC
(16 years, 2 months ago)
by satofumi
File MIME type: text/x-chdr
File size: 468 byte(s)
AccessProperty.cpp is implemented.
| 1 |
#ifndef TEST_ACCESS_PROPERTY_H |
| 2 |
#define TEST_ACCESS_PROPERTY_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief AccessProperty のテスト |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <cppunit/extensions/HelperMacros.h> |
| 14 |
|
| 15 |
|
| 16 |
/*! |
| 17 |
\brief AccessProperty のテストクラス |
| 18 |
*/ |
| 19 |
class AccessPropertyTest : public CppUnit::TestFixture { |
| 20 |
CPPUNIT_TEST_SUITE(AccessPropertyTest); |
| 21 |
CPPUNIT_TEST(readTest); |
| 22 |
CPPUNIT_TEST_SUITE_END(); |
| 23 |
|
| 24 |
public: |
| 25 |
void readTest(void); |
| 26 |
}; |
| 27 |
|
| 28 |
#endif /* !TEST_ACCESS_PROPERTY_H */ |
|