- Timestamp:
- 08/07/09 10:14:08 (15 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
library/tests/testsuite.cpp
r484 r485 1 1 #include "UnitTest++.h" 2 2 #include "itpp_ext.h" 3 #include <iostream>4 #include <iomanip>5 3 6 4 int main ( int, char const *[] ) { 7 5 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 } 6 return UnitTest::RunAllTests(); 14 7 }