int ACE_TMAIN(int,ACE_TCHAR*[])
{
  int status = 0;

  status += test_default_constructor ();

  return status;
}
void test_forward_enumerator(void)
{
  std::cout << "BEGIN: ***** " << __FILE__ << " *****" << std::endl;
  test_default_constructor();
  test_range_constructor();
  test_enumeration();
  test_enumeration_with_chars();
  test_enumeration_with_step();
  std::cout << "END:   ***** " << __FILE__ << " *****" << std::endl;
}
int main()
{
  test_default_constructor();
  test_constructor_1();
  test_constructor_2();
  test_weighted_circumcenter();
  test_copy_constructor();
  test_copy_constructor_2();
  test_assignment_operator();
  test_assignment_operator_2();
  test_set_vertex();
  test_set_vertices();
  test_set_vertices_with_parameters();

  std::cout << "EXIT_SUCCESS" << std::endl;
  return EXIT_SUCCESS;
}