ProteoWizard
Functions | Variables
SampleDatumTest.cpp File Reference
#include "SampleDatum.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include "pwiz/utility/misc/Std.hpp"
#include <complex>
#include <cstring>

Go to the source code of this file.

Functions

template<typename abscissa_type , typename ordinate_type >
void test ()
int main (int argc, char *argv[])

Variables

ostream * os_ = 0

Function Documentation

template<typename abscissa_type , typename ordinate_type >
void test ( )

Definition at line 39 of file SampleDatumTest.cpp.

References os_, and unit_assert.

{
vector<sd_type> v;
v.push_back(sd_type(1,2));
v.push_back(sd_type(3,4));
v.push_back(sd_type(5,6));
// write the pairs out to a stream
ostringstream oss;
copy(v.begin(), v.end(), ostream_iterator<sd_type>(oss, "\n"));
if (os_) *os_ << oss.str();
// read them back in
vector<sd_type> w;
istringstream iss(oss.str());
copy(istream_iterator<sd_type>(iss), istream_iterator<sd_type>(), back_inserter(w));
// compare the two vectors
unit_assert(v == w);
}
int main ( int  argc,
char *  argv[] 
)

Definition at line 63 of file SampleDatumTest.cpp.

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

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

Variable Documentation

ostream* os_ = 0

Definition at line 35 of file SampleDatumTest.cpp.