root/library/tests/testsuite.cpp @ 484

Revision 484, 284 bytes (checked in by vbarta, 15 years ago)

repeating failing mpdf tests; mpdf_harness configs now have optional cond (0 by default) and mandatory variance

Line 
1#include "UnitTest++.h"
2#include "itpp_ext.h"
3#include <iostream>
4#include <iomanip>
5
6int main ( int, char const *[] ) {
7        itpp::RNG_randomize();
8        try {
9          return UnitTest::RunAllTests();
10        } catch ( std::exception const& e ) {
11          std::cerr << e.what() << std::endl;
12          return -1;
13        }
14}
Note: See TracBrowser for help on using the browser.