root/library/tests/testsuite/pdf_test.cpp @ 717

Revision 717, 0.7 kB (checked in by mido, 15 years ago)

clean up of the whole tests directory has just started

  • Property svn:eol-style set to native
Line 
1#include "base/bdmbase.h"
2#include "base/user_info.h"
3#include "stat/emix.h"
4#include "itpp_ext.h"
5#include "../pdf_harness.h"
6#include "../mat_checks.h"
7#include "UnitTest++.h"
8
9using namespace bdm;
10
11static void check_mean(pdf &distrib_obj, const vec &mu0, int nsamples, const vec &mean, double tolerance);
12
13static void check_covariance(mmix &distrib_obj, const vec &mu0, int nsamples, const mat &R, double tolerance);
14
15TEST ( mgamma_test ) {
16        pdf_harness::test_config ( "mgamma.cfg" );
17}
18
19TEST ( mlnorm_test ) {
20        pdf_harness::test_config ( "mlnorm.cfg" );
21}
22
23TEST ( mprod_test ) {
24        pdf_harness::test_config ( "mprod.cfg" );
25}
26
27TEST ( mmix_test ) {
28        pdf_harness::test_config ( "mmix.cfg" );
29}
30
31TEST ( emix_test ) {
32        pdf_harness::test_config ( "emix.cfg" );
33}
Note: See TracBrowser for help on using the browser.