root/library/tests/general_suite.h

Revision 722, 0.7 kB (checked in by mido, 15 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
23using std::cout;
24using std::cerr;
25using std::endl;
26
27using namespace itpp;
28
29namespace UnitTest {
30
31void print_test_list();
32
33void pick_selected_tests ( int argc, char const *argv[] );
34
35int run_selected_tests();
36
37}
38
39#endif
Note: See TracBrowser for help on using the browser.