| 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 | const double epsilon = 0.00001; | 
|---|
| 8 |  | 
|---|
| 9 | namespace UnitTest | 
|---|
| 10 | { | 
|---|
| 11 |  | 
|---|
| 12 | inline void CheckClose(TestResults &results, const itpp::vec &expected, | 
|---|
| 13 | const itpp::vec &actual, double tolerance, | 
|---|
| 14 | TestDetails const &details) { | 
|---|
| 15 | if (!AreClose(expected, actual, tolerance)) { | 
|---|
| 16 | MemoryOutStream stream; | 
|---|
| 17 | stream << "Expected " << expected << " +/- " << tolerance << " but was " << actual; | 
|---|
| 18 |  | 
|---|
| 19 | results.OnTestFailure(details, stream.GetText()); | 
|---|
| 20 | } | 
|---|
| 21 | } | 
|---|
| 22 |  | 
|---|
| 23 | inline void CheckClose(TestResults &results, const itpp::mat &expected, | 
|---|
| 24 | const itpp::mat &actual, double tolerance, | 
|---|
| 25 | TestDetails const &details) { | 
|---|
| 26 | if (!AreClose(expected, actual, tolerance)) { | 
|---|
| 27 | MemoryOutStream stream; | 
|---|
| 28 | stream << "Expected " << expected << " +/- " << tolerance << " but was " << actual; | 
|---|
| 29 |  | 
|---|
| 30 | results.OnTestFailure(details, stream.GetText()); | 
|---|
| 31 | } | 
|---|
| 32 | } | 
|---|
| 33 |  | 
|---|
| 34 | } | 
|---|
| 35 |  | 
|---|
| 36 | namespace bdm { | 
|---|
| 37 |  | 
|---|
| 38 | void egiw_harness::from_setting(const Setting &set) { | 
|---|
| 39 | epdf_harness::from_setting(set); | 
|---|
| 40 | UI::get(lognc, set, "lognc"); | 
|---|
| 41 | } | 
|---|
| 42 |  | 
|---|
| 43 | void egiw_harness::test() | 
|---|
| 44 | { | 
|---|
| 45 | epdf_harness::test(); | 
|---|
| 46 |  | 
|---|
| 47 | egiw *wide = dynamic_cast<egiw *>(get_epdf()); | 
|---|
| 48 | CHECK(wide); | 
|---|
| 49 |  | 
|---|
| 50 | CHECK_CLOSE(lognc, wide->lognc(), epsilon); | 
|---|
| 51 | } | 
|---|
| 52 |  | 
|---|
| 53 | } | 
|---|