Browse Subversion Repository
Contents of /simulator/TestBodyPosition.h
Parent Directory
| Revision Log
Revision 139 -
( show annotations)
( download)
( as text)
Sun Nov 11 00:44:41 2007 UTC
(16 years, 5 months ago)
by satofumi
File MIME type: text/x-chdr
File size: 579 byte(s)
fix sh7045/crt0.S
| 1 |
#ifndef TEST_BODY_POSITION_H |
| 2 |
#define TEST_BODY_POSITION_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief bodyPosition.c のテスト |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <cppunit/extensions/HelperMacros.h> |
| 14 |
|
| 15 |
|
| 16 |
/*! |
| 17 |
\brief bodyPosition. のテストクラス |
| 18 |
*/ |
| 19 |
class BodyPositionTest : public CppUnit::TestFixture { |
| 20 |
CPPUNIT_TEST_SUITE(BodyPositionTest); |
| 21 |
CPPUNIT_TEST(initializeTest); |
| 22 |
CPPUNIT_TEST(straightTest); |
| 23 |
CPPUNIT_TEST(rotateTest); |
| 24 |
CPPUNIT_TEST_SUITE_END(); |
| 25 |
|
| 26 |
public: |
| 27 |
void initializeTest(void); |
| 28 |
void straightTest(void); |
| 29 |
void rotateTest(void); |
| 30 |
}; |
| 31 |
|
| 32 |
#endif /* !TEST_BODY_POSITION_H */ |
|