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

Go to the source code of this file.

Functions

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

Function Documentation

void test ( )

Definition at line 33 of file PeptideIDMapTest.cpp.

References e(), pwiz::peptideid::PeptideID::Record::nativeID, pwiz::peptideid::PeptideID::Record::normalizedScore, pwiz::peptideid::PeptideIDMap::record(), pwiz::proteome::AminoAcid::Info::record(), pwiz::peptideid::PeptideID::Record::sequence, unit_assert, and unit_assert_equal.

{
PeptideIDMap peptideIDMap;
PeptideID::Record* record = &peptideIDMap["1"];
record->nativeID = "1";
record->sequence = "DARREN";
record->normalizedScore = .5;
record = &peptideIDMap["2"];
record->nativeID = "2";
record->sequence = "KESSNER";
record->normalizedScore = .6;
PeptideID::Record result = peptideIDMap.record(PeptideID::Location("goober", 0, 0));
unit_assert(result.nativeID.empty());
unit_assert(result.sequence.empty());
result = peptideIDMap.record(PeptideID::Location("1", 0, 0));
unit_assert(result.nativeID == "1");
unit_assert(result.sequence == "DARREN");
result = peptideIDMap.record(PeptideID::Location("2", 0, 0));
unit_assert(result.nativeID == "2");
unit_assert(result.sequence == "KESSNER");
}
int main ( int  argc,
const char *  argv[] 
)

Definition at line 64 of file PeptideIDMapTest.cpp.

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

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