#ifndef LINETEST_H
#define LINETEST_H

/*!
\brief Test line class.
*/
class linetest
{
public:

  /** Basic line tests. */
  static void test01();
  /** Testing minimizing points on two lines in 3D space. */
  static void test02();

  static int unittest01();

};


#endif



