#ifndef POINTTEST_H
#define POINTTEST_H


/*!
\brief Test point classes.
*/
class pointtest
{
public:

  /** Test point3<double>::readin where an array is read
      into a vector of 3D points. */
  static void test01();
  /** Testing writing to and reading points for a text file. */
  static void test02();
  /** Testing string serialization where the point is converted
      to a string and then converted back again. */
  static void test03();

};


#endif



