ProteoWizard
Classes | Functions
ChromatogramListWrapperTest.cpp File Reference
#include "ChromatogramListWrapper.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include "pwiz/utility/misc/Std.hpp"

Go to the source code of this file.

Classes

class  MyWrapper

Functions

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

Function Documentation

void test ( )

Definition at line 50 of file ChromatogramListWrapperTest.cpp.

References pwiz::msdata::ChromatogramIdentity::id, pwiz::msdata::ChromatogramIdentity::index, boost::lexical_cast(), and unit_assert.

{
const size_t chromatogramCount = 10;
for (size_t i=0; i<chromatogramCount; i++)
{
simple->chromatograms.push_back(ChromatogramPtr(new Chromatogram));
Chromatogram& s = *simple->chromatograms.back();
s.index = i;
s.id = "S" + lexical_cast<string>(i);
s.nativeID = lexical_cast<string>(i);
}
shared_ptr<MyWrapper> wrapper(new MyWrapper(simple));
// make sure we're getting what we expect
wrapper->verifySize(10);
unit_assert(wrapper->size() == 10);
for (size_t i=0; i<chromatogramCount; i++)
{
string id = "S" + lexical_cast<string>(i);
string nativeID = lexical_cast<string>(i);
unit_assert(wrapper->find(id) == i);
unit_assert(wrapper->findNative(nativeID) == i);
const ChromatogramIdentity& identity = wrapper->chromatogramIdentity(i);
unit_assert(identity.id == id);
unit_assert(identity.nativeID == nativeID);
ChromatogramPtr s = wrapper->chromatogram(i);
unit_assert(s->id == id);
unit_assert(s->nativeID == nativeID);
}
}
int main ( int  argc,
const char *  argv[] 
)

Definition at line 89 of file ChromatogramListWrapperTest.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.")
}
}