Browse Subversion Repository
Contents of /rangesCtrl/TestScipHandler.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: 590 byte(s)
using namespace beego
| 1 |
#ifndef TEST_SCIP_HANDLER_H |
| 2 |
#define TEST_SCIP_HANDLER_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief ScipHandler のテスト |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <cppunit/extensions/HelperMacros.h> |
| 14 |
#include "ScipHandler.h" |
| 15 |
|
| 16 |
|
| 17 |
/*! |
| 18 |
\brief ScipHandler のテストクラス |
| 19 |
*/ |
| 20 |
class ScipHandlerTest : public CppUnit::TestFixture { |
| 21 |
|
| 22 |
beego::ScipHandler scip; |
| 23 |
|
| 24 |
CPPUNIT_TEST_SUITE(ScipHandlerTest); |
| 25 |
CPPUNIT_TEST(index2radTest); |
| 26 |
CPPUNIT_TEST(rad2indexTest); |
| 27 |
CPPUNIT_TEST_SUITE_END(); |
| 28 |
|
| 29 |
public: |
| 30 |
void setUp(void); |
| 31 |
void index2radTest(void); |
| 32 |
void rad2indexTest(void); |
| 33 |
}; |
| 34 |
|
| 35 |
#endif /* !TEST_SCIP_HANDLER_H */ |
|