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