|
Revision 722, 0.7 kB
(checked in by mido, 16 years ago)
|
|
astyler run over all test sources
general_suite added
cleanup of \test directory finished
|
| Line | |
|---|
| 1 | /*! |
|---|
| 2 | \file |
|---|
| 3 | \brief Support for test suits. |
|---|
| 4 | \author Miroslav Pistek. |
|---|
| 5 | |
|---|
| 6 | ----------------------------------- |
|---|
| 7 | BDM++ - C++ library for Bayesian Decision Making under Uncertainty |
|---|
| 8 | |
|---|
| 9 | Using IT++ for numerical operations |
|---|
| 10 | ----------------------------------- |
|---|
| 11 | */ |
|---|
| 12 | |
|---|
| 13 | #ifndef GENERAL_SUITE_H |
|---|
| 14 | #define GENERAL_SUITE_H |
|---|
| 15 | |
|---|
| 16 | #include "Test.h" |
|---|
| 17 | #include "TestReporterStdout.h" |
|---|
| 18 | #include "UnitTest++.h" |
|---|
| 19 | #include "bdmerror.h" |
|---|
| 20 | #include "itpp_ext.h" |
|---|
| 21 | #include <string.h> |
|---|
| 22 | |
|---|
| 23 | using std::cout; |
|---|
| 24 | using std::cerr; |
|---|
| 25 | using std::endl; |
|---|
| 26 | |
|---|
| 27 | using namespace itpp; |
|---|
| 28 | |
|---|
| 29 | namespace UnitTest { |
|---|
| 30 | |
|---|
| 31 | void print_test_list(); |
|---|
| 32 | |
|---|
| 33 | void pick_selected_tests ( int argc, char const *argv[] ); |
|---|
| 34 | |
|---|
| 35 | int run_selected_tests(); |
|---|
| 36 | |
|---|
| 37 | } |
|---|
| 38 | |
|---|
| 39 | #endif |
|---|