ProteoWizard
Classes | Functions
MatrixIOTest.cpp File Reference
#include "pwiz/analysis/demux/MatrixIO.hpp"
#include "pwiz/utility/misc/Std.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include <boost/filesystem/operations.hpp>
#include <boost/make_shared.hpp>

Go to the source code of this file.

Classes

class  MatrixIOTest
 

Functions

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

Function Documentation

◆ main()

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

Definition at line 112 of file MatrixIOTest.cpp.

113{
114 TEST_PROLOG(argc, argv)
115
116 try
117 {
118 MatrixIOTest tester;
119 tester.Run();
120 }
121 catch (exception& e)
122 {
123 TEST_FAILED(e.what())
124 }
125 catch (...)
126 {
127 TEST_FAILED("Caught unknown exception.")
128 }
129
131}
#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 MatrixIOTest::Run(), TEST_EPILOG, TEST_FAILED, and TEST_PROLOG.