ProteoWizard
Functions
TraDataTest.cpp File Reference
#include "TraData.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include "pwiz/utility/misc/Std.hpp"

Go to the source code of this file.

Functions

void testParamContainer ()
int main (int argc, const char *argv[])

Function Documentation

void testParamContainer ( )

Definition at line 32 of file TraDataTest.cpp.

References CVID_Unknown, pwiz::data::ParamContainer::cvParam(), pwiz::data::ParamContainer::cvParamChild(), pwiz::data::ParamContainer::cvParams, pwiz::data::UserParam::empty(), pwiz::data::ParamContainer::hasCVParam(), pwiz::data::ParamContainer::hasCVParamChild(), MS_deisotoping, MS_ionization_type, MS_ms_level, MS_MSn_spectrum, MS_reflectron_off, MS_reflectron_on, MS_selected_ion_m_z, MS_spectrum_type, pwiz::data::ParamContainer::set(), unit_assert, UO_minute, UO_second, pwiz::data::ParamContainer::userParam(), pwiz::data::ParamContainer::userParams, pwiz::data::CVParam::value, pwiz::data::CVParam::valueAs(), and pwiz::data::UserParam::valueAs().

{
pc.cvParams.push_back(MS_reflectron_on);
pc.cvParams.push_back(MS_MSn_spectrum);
pc.cvParams.push_back(MS_reflectron_off);
pc.cvParams.push_back(CVParam(MS_ionization_type, 420));
pc.userParams.push_back(UserParam("name1", "1", "type1", UO_second));
pc.userParams.push_back(UserParam("name2", "2", "type2", UO_minute));
string result = "goober";
unit_assert(result == "");
unit_assert(result == "420");
UserParam userParam = pc.userParam("name");
unit_assert(userParam.empty());
userParam = pc.userParam("name1");
unit_assert(userParam.name == "name1");
unit_assert(userParam.valueAs<int>() == 1);
unit_assert(userParam.type == "type1");
unit_assert(userParam.units == UO_second);
userParam = pc.userParam("name2");
unit_assert(userParam.name == "name2");
unit_assert(userParam.valueAs<double>() == 2);
unit_assert(userParam.type == "type2");
unit_assert(userParam.units == UO_minute);
unit_assert(pc.userParam("goober").valueAs<int>() == 0);
pc.set(MS_ms_level, 2);
pc.set(MS_ms_level, 3);
pc.set(MS_deisotoping, true);
unit_assert(pc.cvParam(MS_deisotoping).valueAs<bool>() == true);
pc.set(MS_deisotoping, false);
unit_assert(pc.cvParam(MS_deisotoping).valueAs<bool>() == false);
}
int main ( int  argc,
const char *  argv[] 
)

Definition at line 84 of file TraDataTest.cpp.

References e(), TEST_EPILOG, TEST_FAILED, TEST_PROLOG, and testParamContainer().

{
TEST_PROLOG(argc, argv)
try
{
}
catch (exception& e)
{
TEST_FAILED(e.what())
}
catch (...)
{
TEST_FAILED("Caught unknown exception.")
}
}