ProteoWizard
Classes | Functions
DemuxDebugReadWriteTest.cpp File Reference
#include "pwiz/utility/misc/Std.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include "pwiz/analysis/demux/DemuxDebugReader.hpp"
#include "pwiz/analysis/demux/DemuxDebugWriter.hpp"
#include <boost/make_shared.hpp>

Go to the source code of this file.

Classes

class  DemuxDebugRWTest
 

Functions

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

Function Documentation

◆ main()

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

Definition at line 124 of file DemuxDebugReadWriteTest.cpp.

125{
126 TEST_PROLOG(argc, argv)
127
128 try
129 {
130 DemuxDebugRWTest tester;
131 tester.Run();
132 }
133 catch (exception& e)
134 {
135 TEST_FAILED(e.what())
136 }
137 catch (...)
138 {
139 TEST_FAILED("Caught unknown exception.")
140 }
141
143}
#define TEST_EPILOG
Definition unit.hpp:183
#define TEST_FAILED(x)
Definition unit.hpp:177
#define TEST_PROLOG(argc, argv)
Definition unit.hpp:175

References DemuxDebugRWTest::Run(), TEST_EPILOG, TEST_FAILED, and TEST_PROLOG.