Changeset 457 for library/tests
- Timestamp:
- 07/31/09 08:46:16 (15 years ago)
- Location:
- library/tests
- Files:
-
- 1 removed
- 1 modified
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
library/tests/CMakeLists.txt
r453 r457 33 33 34 34 # using UnitTest++ 35 add_executable(testsuite datalink_test.cpp eg amma_test.cpp egiw_test.cpp enorm_test.cpp loggers_test.cpp mepdf_test.cpp mgamma_test.cpp rv_test.cpp square_mat_test.cpp testsuite.cpp test_user_info.cpp test_shared_ptr.cpp)35 add_executable(testsuite datalink_test.cpp egiw_test.cpp epdf_test.cpp loggers_test.cpp mepdf_test.cpp mpdf_test.cpp rv_test.cpp square_mat_test.cpp testsuite.cpp test_user_info.cpp test_shared_ptr.cpp) 36 36 target_link_libraries(testsuite bdm itpp testutil unittest) 37 37 -
library/tests/epdf_test.cpp
r456 r457 11 11 ParticularUI<egamma>("egamma")); 12 12 13 template<> 14 const ParticularUI<enorm<ldmat> > &ParticularUI<enorm<ldmat> >::factory( 15 ParticularUI<enorm<ldmat> >("enorm<ldmat>")); 16 17 template<> 18 const ParticularUI<enorm<fsqmat> > &ParticularUI<enorm<fsqmat> >::factory( 19 ParticularUI<enorm<fsqmat> >("enorm<fsqmat>")); 20 21 template<> 22 const ParticularUI<enorm<chmat> > &ParticularUI<enorm<chmat> >::factory( 23 ParticularUI<enorm<chmat> >("enorm<chmat>")); 24 13 25 TEST(test_egamma) { 14 26 epdf_harness::test_config("egamma.cfg"); 15 27 } 28 29 TEST(test_enorm) { 30 epdf_harness::test_config("enorm.cfg"); 31 }