|
From: <qua...@us...> - 2010-10-15 09:28:23
|
Revision: 142
http://dsim.svn.sourceforge.net/dsim/?rev=142&view=rev
Author: quannaus
Date: 2010-10-15 09:28:16 +0000 (Fri, 15 Oct 2010)
Log Message:
-----------
[test] Adapted the test suite to the new interface.
Modified Paths:
--------------
trunk/dsim/test/dsim/SimulationTestSuite.cpp
Modified: trunk/dsim/test/dsim/SimulationTestSuite.cpp
===================================================================
--- trunk/dsim/test/dsim/SimulationTestSuite.cpp 2010-10-15 09:27:53 UTC (rev 141)
+++ trunk/dsim/test/dsim/SimulationTestSuite.cpp 2010-10-15 09:28:16 UTC (rev 142)
@@ -24,9 +24,15 @@
// Schedule input file name
const std::string lScheduleInputFilename ("../samples/schedule01.csv");
+
+ // O&D input file name
+ const std::string lODInputFilename ("../samples/ond01.csv");
// Demand input file name
const stdair::Filename_T lDemandInputFilename ("../samples/demand01.csv");
+
+ // Fare input file name
+ const stdair::Filename_T lFareInputFilename ("../samples/fare01.csv");
// Output log File
const std::string lLogFilename ("SimulationTestSuite.log");
@@ -43,8 +49,8 @@
"localhost", "3306",
"sim_dsim");
DSIM::DSIM_Service dsimService (lLogParams, lDBParams,
- lScheduleInputFilename,
- lDemandInputFilename);
+ lScheduleInputFilename, lODInputFilename,
+ lDemandInputFilename, lFareInputFilename);
// Perform a simulation
dsimService.simulate();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|