Update of /cvsroot/echempp/Experiment/Experiment/test
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv28324/test
Modified Files:
ExperimentTest.cpp
Log Message:
Updated to use TechniqueType, autoregistration yet to be added.
Index: ExperimentTest.cpp
===================================================================
RCS file: /cvsroot/echempp/Experiment/Experiment/test/ExperimentTest.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** ExperimentTest.cpp 11 Apr 2007 08:24:32 -0000 1.5
--- ExperimentTest.cpp 5 May 2007 08:49:07 -0000 1.6
***************
*** 148,152 ****
ap->set_execution_end(en);
BOOST_CHECK( ap->get_execution_end() == en );
! ExcitationFunctions::DIExcitationFunction<quantity::ElectricPotential,quantity::Time> ef;
ap->set_exc_func(ef);
BOOST_CHECK( ap->get_exc_func() == ef );
--- 148,152 ----
ap->set_execution_end(en);
BOOST_CHECK( ap->get_execution_end() == en );
! ExcitationFunctions::SDIExcitationFunction<quantity::ElectricPotential,quantity::Time,ExcitationFunctions::Segments::LinearSegment> ef;
ap->set_exc_func(ef);
BOOST_CHECK( ap->get_exc_func() == ef );
***************
*** 163,167 ****
ip->set_induction_end(en);
BOOST_CHECK( ip->get_induction_end() == en );
! ExcitationFunctions::DIExcitationFunction<quantity::ElectricPotential,quantity::Time> ef;
ip->set_exc_func(ef);
BOOST_CHECK( ip->get_exc_func() == ef );
--- 163,167 ----
ip->set_induction_end(en);
BOOST_CHECK( ip->get_induction_end() == en );
! ExcitationFunctions::SDIExcitationFunction<quantity::ElectricPotential,quantity::Time,ExcitationFunctions::Segments::LinearSegment> ef;
ip->set_exc_func(ef);
BOOST_CHECK( ip->get_exc_func() == ef );
|