#ifndef MAZEMATRIXD2TEST_H
#define MAZEMATRIXD2TEST_H

/*!
\brief Test mazematrixD2test and cellD2.
*/
class mazematrixD2test
{
public:

  /** Brief description of each test. */
  static string doc[];

  /** Link a simple maze and print it out. */
  static void test01();

  /** From a simple maze, generate a relative map - local coord system.*/
  static void test02();

  /** Create a small maze, then use mazematrixmapD2 to map it and test coordinates. */
  static int unittest01();

  /** Testing mazematrixD2 serialization. */
  static int unittest02();

};


#endif


