#ifndef MESSAGETEST_H
#define MESSAGETEST_H

/*!
\brief Test the classes in message.h .
*/
class messagetest
{
public:

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

  /** Write messages to log error file. */
  void test01();

  /** Overloading << with return type message, write messages to log error file. */
  void test02();
  /** Overloading << with return type message, write messages to log list of strings. */
  void test03();

};



#endif



