update names in the testsuite

This commit is contained in:
Sébastien Loriot 2014-05-21 16:19:12 +02:00
parent c6fa3f4a3a
commit d34ebbaafa
1 changed files with 5 additions and 5 deletions

View File

@ -249,7 +249,7 @@ int main()
typedef CGAL::Compact_container<T2, typedef CGAL::Compact_container<T2,
CGAL::Default, CGAL::Default,
CGAL::CC_time_stamper<T2> > C4; CGAL::Time_stamper<T2> > C4;
// with timestamps // with timestamps
typedef Node_2 T3; typedef Node_2 T3;
@ -261,22 +261,22 @@ int main()
C4 c4; test(c4); C4 c4; test(c4);
// Check the time stamper policies // Check the time stamper policies
if(! boost::is_base_of<CGAL::CC_time_stamper<T1>, if(! boost::is_base_of<CGAL::Time_stamper<T1>,
C1::Time_stamper_impl>::value) C1::Time_stamper_impl>::value)
{ {
std::cerr << "Error timestamper of C1\n"; return 1; std::cerr << "Error timestamper of C1\n"; return 1;
} }
if(! boost::is_base_of<CGAL::CC_no_time_stamp<T2>, if(! boost::is_base_of<CGAL::No_time_stamp<T2>,
C2::Time_stamper_impl>::value) C2::Time_stamper_impl>::value)
{ {
std::cerr << "Error timestamper of C2\n"; return 1; std::cerr << "Error timestamper of C2\n"; return 1;
} }
if(! boost::is_base_of<CGAL::CC_no_time_stamp<T3>, if(! boost::is_base_of<CGAL::No_time_stamp<T3>,
C3::Time_stamper_impl>::value) C3::Time_stamper_impl>::value)
{ {
std::cerr << "Error timestamper of C3\n"; return 1; std::cerr << "Error timestamper of C3\n"; return 1;
} }
if(! boost::is_base_of<CGAL::CC_time_stamper<T2>, if(! boost::is_base_of<CGAL::Time_stamper<T2>,
C4::Time_stamper_impl>::value) C4::Time_stamper_impl>::value)
{ {
std::cerr << "Error timestamper of C4\n"; return 1; std::cerr << "Error timestamper of C4\n"; return 1;