Revision 457, 462 bytes
(checked in by vbarta, 15 years ago)
|
moved generic configurable tests to common source files
|
Line | |
---|
1 | #define BDMLIB // not an ideal way to prevent double registration of UI factories... |
---|
2 | #include "base/bdmbase.h" |
---|
3 | #include "base/user_info.h" |
---|
4 | #include "stat/exp_family.h" |
---|
5 | #include "itpp_ext.h" |
---|
6 | #include "mpdf_harness.h" |
---|
7 | #include "mat_checks.h" |
---|
8 | #include "UnitTest++.h" |
---|
9 | |
---|
10 | using namespace bdm; |
---|
11 | |
---|
12 | template<> |
---|
13 | const ParticularUI<mgamma> &ParticularUI<mgamma>::factory( |
---|
14 | ParticularUI<mgamma>("mgamma")); |
---|
15 | |
---|
16 | TEST(test_mgamma) { |
---|
17 | mpdf_harness::test_config("mgamma.cfg"); |
---|
18 | } |
---|