Browse Subversion Repository
Contents of /jpinput/TestJpTextConverter.h
Parent Directory
| Revision Log
Revision 191 -
( show annotations)
( download)
( as text)
Fri Jan 4 02:49:36 2008 UTC
(16 years, 3 months ago)
by satofumi
File MIME type: text/x-chdr
File size: 539 byte(s)
using namespace beego
| 1 |
#ifndef TEST_JP_TEXT_CONVERTER_H |
| 2 |
#define TEST_JP_TEXT_CONVERTER_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief ローマ字かな変換のテスト |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <cppunit/extensions/HelperMacros.h> |
| 14 |
#include "TestJpTextConverter.h" |
| 15 |
|
| 16 |
|
| 17 |
class TestJpTextConverter : public CppUnit::TestFixture { |
| 18 |
CPPUNIT_TEST_SUITE(TestJpTextConverter); |
| 19 |
CPPUNIT_TEST(bufferCtrlTest); |
| 20 |
CPPUNIT_TEST(romaConvertTest); |
| 21 |
CPPUNIT_TEST_SUITE_END(); |
| 22 |
|
| 23 |
public: |
| 24 |
void bufferCtrlTest(void); |
| 25 |
void romaConvertTest(void); |
| 26 |
}; |
| 27 |
|
| 28 |
#endif /* !TEST_JP_TEXT_CONVERTER_H */ |
|