ProteoWizard
Functions | Variables
ProteinListFactoryTest.cpp File Reference
#include "ProteinListFactory.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include "pwiz/utility/misc/Std.hpp"
#include "pwiz/data/proteome/examples.hpp"
#include <cstring>

Go to the source code of this file.

Functions

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

Variables

ostream * os_ = 0

Function Documentation

void testUsage ( )

Definition at line 38 of file ProteinListFactoryTest.cpp.

References os_, and pwiz::analysis::ProteinListFactory::usage().

Referenced by main(), and test().

{
if (os_) *os_ << "ProteinListFactory::usage():\n" << ProteinListFactory::usage() << endl;
}
void testWrap ( )

Definition at line 44 of file ProteinListFactoryTest.cpp.

References pwiz::identdata::examples::initializeTiny(), pwiz::proteome::ProteomeData::proteinListPtr, unit_assert, unit_assert_operator_equal, and pwiz::analysis::ProteinListFactory::wrap().

Referenced by test().

{
unit_assert(pl.get());
ProteinListFactory::wrap(pd, "id DEFCON42;ZEBRA");
unit_assert_operator_equal("ZEBRA", pl->protein(0)->id);
unit_assert_operator_equal("DEFCON42", pl->protein(1)->id);
ProteinListFactory::wrap(pd, "index 1");
unit_assert_operator_equal("DEFCON42", pl->protein(0)->id);
}
void test ( )

Definition at line 65 of file ProteinListFactoryTest.cpp.

References testUsage(), and testWrap().

{
}
int main ( int  argc,
char *  argv[] 
)

Definition at line 72 of file ProteinListFactoryTest.cpp.

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

{
TEST_PROLOG(argc, argv)
try
{
if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
test();
}
catch (exception& e)
{
TEST_FAILED(e.what())
}
catch (...)
{
TEST_FAILED("Caught unknown exception.")
}
}

Variable Documentation

ostream* os_ = 0

Definition at line 35 of file ProteinListFactoryTest.cpp.