ProteoWizard
Macros | Functions | Variables
Serializer_mzid_Test.cpp File Reference
#include "pwiz/utility/misc/unit.hpp"
#include "pwiz/utility/misc/Std.hpp"
#include "IdentData.hpp"
#include "Serializer_mzid.hpp"
#include "examples.hpp"
#include "Diff.hpp"

Go to the source code of this file.

Macros

#define PWIZ_SOURCE

Functions

void testSerialize ()
void test ()
int main (int argc, char **argv)

Variables

ostream * os_ = 0

Macro Definition Documentation

#define PWIZ_SOURCE

Definition at line 23 of file Serializer_mzid_Test.cpp.


Function Documentation

void testSerialize ( )

Definition at line 41 of file Serializer_mzid_Test.cpp.

References diff(), pwiz::identdata::examples::initializeTiny(), os_, pwiz::identdata::Serializer_mzIdentML::read(), unit_assert, and pwiz::identdata::Serializer_mzIdentML::write().

Referenced by main(), and test().

{
if (os_) *os_ << "begin testSerialize\n";
IdentData mzid;
ostringstream oss;
ser.write(oss, mzid);
if (os_) *os_ << oss.str() << endl;
IdentData mzid2;
boost::shared_ptr<istream> iss(new istringstream(oss.str()));
ser.read(iss, mzid2);
if (os_ && diff) *os_ << diff << endl;
}
void test ( )

Definition at line 62 of file Serializer_mzid_Test.cpp.

References testSerialize().

int main ( int  argc,
char **  argv 
)

Definition at line 67 of file Serializer_mzid_Test.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 38 of file Serializer_mzid_Test.cpp.