Browse Subversion Repository
Contents of /common/TestCalculateGeometry.h
Parent Directory
| Revision Log
Revision 131 -
( show annotations)
( download)
( as text)
Tue Nov 6 01:12:17 2007 UTC
(16 years, 5 months ago)
by satofumi
File MIME type: text/x-chdr
File size: 664 byte(s)
common/TestCalculateGeometry.cpp is implemented.
| 1 |
#ifndef TEST_CALCULATE_GEOMETRY_H |
| 2 |
#define TEST_CALCULATE_GEOMETRY_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief CalculateGeometry のテスト |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <cppunit/extensions/HelperMacros.h> |
| 14 |
|
| 15 |
|
| 16 |
/*! |
| 17 |
\brief CalculateGeometry のテストクラス |
| 18 |
*/ |
| 19 |
class CalculateGeometryTest : public CppUnit::TestFixture { |
| 20 |
CPPUNIT_TEST_SUITE(CalculateGeometryTest); |
| 21 |
CPPUNIT_TEST(compileTest); |
| 22 |
CPPUNIT_TEST(toPositionTest); |
| 23 |
CPPUNIT_TEST(toPointTest); |
| 24 |
CPPUNIT_TEST(toLineTest); |
| 25 |
CPPUNIT_TEST_SUITE_END(); |
| 26 |
|
| 27 |
public: |
| 28 |
void compileTest(void); |
| 29 |
void toPositionTest(void); |
| 30 |
void toPointTest(void); |
| 31 |
void toLineTest(void); |
| 32 |
}; |
| 33 |
|
| 34 |
#endif /* !TEST_CALCULATE_GEOMETRY_H */ |
|