Revision 505, 481 bytes
(checked in by vbarta, 15 years ago)
|
added configurable tests of mprod
|
Line | |
---|
1 | #include "base/bdmbase.h" |
---|
2 | #include "base/user_info.h" |
---|
3 | #include "stat/exp_family.h" |
---|
4 | #include "itpp_ext.h" |
---|
5 | #include "mpdf_harness.h" |
---|
6 | #include "mat_checks.h" |
---|
7 | #include "UnitTest++.h" |
---|
8 | |
---|
9 | using namespace bdm; |
---|
10 | |
---|
11 | TEST ( test_mepdf ) { |
---|
12 | mpdf_harness::test_config ( "mepdf.cfg" ); |
---|
13 | } |
---|
14 | |
---|
15 | TEST ( test_mgamma ) { |
---|
16 | mpdf_harness::test_config ( "mgamma.cfg" ); |
---|
17 | } |
---|
18 | |
---|
19 | TEST ( test_mlnorm ) { |
---|
20 | mpdf_harness::test_config ( "mlnorm.cfg" ); |
---|
21 | } |
---|
22 | |
---|
23 | TEST ( test_mprod ) { |
---|
24 | mpdf_harness::test_config ( "mprod.cfg" ); |
---|
25 | } |
---|