Ignore:
Timestamp:
Apr 17, 2012, 11:39:19 AM (14 years ago)
Author:
Michael Ankele <ankele@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, Candidate_v1.7.0, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
c513b7
Parents:
c68409
git-author:
Michael Ankele <ankele@…> (04/10/12 11:52:53)
git-committer:
Michael Ankele <ankele@…> (04/17/12 11:39:19)
Message:

updated Parameters' unittests

  • renamed "xxxUnitTest" -> "xxxTest" (to evade naming conflicts)
  • removed string operations
  • fixed missing template <T>s
File:
1 moved

Legend:

Unmodified
Added
Removed
  • src/Parameters/unittests/DiscreteValueTest.cpp

    rc68409 rdbb533  
    77
    88/*
    9  * DiscreteValueUnitTest.cpp
     9 * DiscreteValueTest.cpp
    1010 *
    1111 *  Created on: Sep 28, 2011
     
    1818#endif
    1919
    20 #include "DiscreteValueUnitTest.hpp"
     20#include "DiscreteValueTest.hpp"
    2121
    2222#include <cppunit/CompilerOutputter.h>
     
    2424#include <cppunit/ui/text/TestRunner.h>
    2525
    26 #include "Parser/Parameters/DiscreteValue.hpp"
    27 
    28 #include "CodePatterns/toString.hpp"
     26#include "Parameters/DiscreteValue.hpp"
    2927
    3028#ifdef HAVE_TESTRUNNER
     
    104102  // checking valid values
    105103  for (int i=1; i<=3;++i)
    106     CPPUNIT_ASSERT_EQUAL(true, test.isValid(toString(i)));
    107 
    108   // checking invalid values
    109   for (int i=-10; i<=0;++i)
    110     CPPUNIT_ASSERT_EQUAL(false, test.isValid(toString(i)));
     104    CPPUNIT_ASSERT_EQUAL(true, test.isValid(i));
     105
     106  // checking invalid values
     107  for (int i=-10; i<=0;++i)
     108    CPPUNIT_ASSERT_EQUAL(false, test.isValid(i));
    111109  for (int i=4; i<=0;++i)
    112     CPPUNIT_ASSERT_EQUAL(false, test.isValid(toString(i)));
     110    CPPUNIT_ASSERT_EQUAL(false, test.isValid(i));
    113111}
    114112
     
    167165#ifndef NDEBUG
    168166  std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl;
    169   CPPUNIT_ASSERT_THROW(test.set(toString(4)), Assert::AssertionFailure);
    170 #endif
    171 #ifndef NDEBUG
    172   std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl;
    173   CPPUNIT_ASSERT_THROW(test.set(toString(0)), Assert::AssertionFailure);
     167  CPPUNIT_ASSERT_THROW(test.set(4), Assert::AssertionFailure);
     168#endif
     169#ifndef NDEBUG
     170  std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl;
     171  CPPUNIT_ASSERT_THROW(test.set(0), Assert::AssertionFailure);
    174172#endif
    175173
    176174  // checking all valid ones
    177175  for (int i=1; i<=3;++i) {
    178     test.set(toString(i));
    179     CPPUNIT_ASSERT_EQUAL(toString(i), test.get());
     176    test.set(i);
     177    CPPUNIT_ASSERT_EQUAL(i, test.get());
    180178  }
    181179
Note: See TracChangeset for help on using the changeset viewer.