Revision 456, 0.5 kB
(checked in by vbarta, 15 years ago)
|
custom test location for harness tests (extended UnitTest?++), configurable tolerance - all tests pass (most of the time)
|
Line | |
---|
1 | #include "egiw_harness.h" |
---|
2 | #include "stat/exp_family.h" |
---|
3 | #include "mat_checks.h" |
---|
4 | #include "test_util.h" |
---|
5 | #include "UnitTest++.h" |
---|
6 | |
---|
7 | namespace bdm { |
---|
8 | |
---|
9 | void egiw_harness::from_setting(const Setting &set) { |
---|
10 | epdf_harness::from_setting(set); |
---|
11 | UI::get(lognc, set, "lognc"); |
---|
12 | } |
---|
13 | |
---|
14 | void egiw_harness::test(const char *config_name, int idx) |
---|
15 | { |
---|
16 | epdf_harness::test(config_name, idx); |
---|
17 | |
---|
18 | CurrentContext cc(config_name, idx); |
---|
19 | |
---|
20 | egiw *wide = dynamic_cast<egiw *>(get_epdf()); |
---|
21 | CHECK(wide); |
---|
22 | |
---|
23 | CHECK_CLOSE_EX(lognc, wide->lognc(), get_tolerance()); |
---|
24 | } |
---|
25 | |
---|
26 | } |
---|