Browse Subversion Repository
Contents of /simulator/TestTRunCtrlSimulator.cpp
Parent Directory
| Revision Log
Revision 279 -
( show annotations)
( download)
( as text)
Wed Mar 12 05:28:19 2008 UTC
(16 years, 1 month ago)
by satofumi
File MIME type: text/x-c++src
File size: 537 byte(s)
adjust tab index
| 1 |
/*! |
| 2 |
\file |
| 3 |
\brief tRunCtrlSimulator ‚̃eƒXƒg |
| 4 |
|
| 5 |
\author Satofumi KAMIMURA |
| 6 |
|
| 7 |
$Id$ |
| 8 |
*/ |
| 9 |
|
| 10 |
#include "TestTRunCtrlSimulator.h" |
| 11 |
#include "tRunCtrlSimulator.h" |
| 12 |
#include "TcpipCtrl.h" |
| 13 |
|
| 14 |
|
| 15 |
CPPUNIT_TEST_SUITE_REGISTRATION(TestTRunCtrlSimulator); |
| 16 |
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(TestTRunCtrlSimulator, |
| 17 |
"TestTRunCtrlSimulator"); |
| 18 |
|
| 19 |
using namespace beego; |
| 20 |
|
| 21 |
|
| 22 |
void TestTRunCtrlSimulator::compileTest(void) { |
| 23 |
|
| 24 |
TcpipCtrl con; |
| 25 |
tRunCtrlSimulator run; |
| 26 |
run.activate(); |
| 27 |
run.connect(&con); |
| 28 |
run.powerOff(); |
| 29 |
} |
|