#ifndef STRINGSERIALIZATIONTEST_H
#define STRINGSERIALIZATIONTEST_H


/*!
\brief Serialization of some data types and continers.
*/
class stringserializationtest
{
public:


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

  /** Write and read a double array. */
  static void test01();
  /** Write and read a 2D array of points. */
  static void test02();
  /** Test file serialization. */
  static void test03();
  /** Test vectorfile serialization. */
  static void test04();

  /** Unit test htmlstring. */
  static int unittest01();

};

#endif


