Browse Subversion Repository
Contents of /common/TestSearchFilePath.h
Parent Directory
| Revision Log
Revision 116 -
( show annotations)
( download)
( as text)
Sun Oct 21 01:35:46 2007 UTC
(16 years, 5 months ago)
by satofumi
File MIME type: text/x-chdr
File size: 530 byte(s)
add monitor classes.
| 1 |
#ifndef SEARCH_FILE_PATH_TEST_H |
| 2 |
#define SEARCH_FILE_PATH_TEST_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief SearchFilePath のテスト |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <cppunit/extensions/HelperMacros.h> |
| 14 |
|
| 15 |
|
| 16 |
/*! |
| 17 |
\brief SearchFilePath のテストクラス |
| 18 |
*/ |
| 19 |
class SearchFilePathTest : public CppUnit::TestFixture { |
| 20 |
CPPUNIT_TEST_SUITE(SearchFilePathTest); |
| 21 |
CPPUNIT_TEST(searchTest); |
| 22 |
CPPUNIT_TEST(replaceTest); |
| 23 |
CPPUNIT_TEST_SUITE_END(); |
| 24 |
|
| 25 |
public: |
| 26 |
void searchTest(void); |
| 27 |
void replaceTest(void); |
| 28 |
}; |
| 29 |
|
| 30 |
#endif /* !SEARCH_FILE_PATH_TEST_H */ |
|