Changeset 477 for library/tests/egiw_harness.cpp
- Timestamp:
- 08/05/09 14:40:03 (15 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
library/tests/egiw_harness.cpp
r475 r477 7 7 namespace bdm { 8 8 9 void egiw_harness::from_setting (const Setting &set) {10 epdf_harness::from_setting(set); 11 UI::get(lognc, set, "lognc", UI::compulsory);9 void egiw_harness::from_setting ( const Setting &set ) { 10 epdf_harness::from_setting ( set ); 11 UI::get ( lognc, set, "lognc", UI::compulsory ); 12 12 } 13 13 14 void egiw_harness::test(const char *config_name, int idx) 15 { 16 epdf_harness::test(config_name, idx); 14 void egiw_harness::test ( const char *config_name, int idx ) { 15 epdf_harness::test ( config_name, idx ); 17 16 18 CurrentContext cc(config_name, idx);17 CurrentContext cc ( config_name, idx ); 19 18 20 egiw *wide = dynamic_cast<egiw *>(get_epdf());21 CHECK(wide);19 egiw *wide = dynamic_cast<egiw *> ( get_epdf() ); 20 CHECK ( wide ); 22 21 23 if (wide) {24 CHECK_CLOSE_EX(lognc, wide->lognc(), get_tolerance());25 22 if ( wide ) { 23 CHECK_CLOSE_EX ( lognc, wide->lognc(), get_tolerance() ); 24 } 26 25 } 27 26