#ifndef STRINGTAGPARSERTEST_H
#define STRINGTAGPARSERTEST_H

/*!
\brief Test the string tag parser.
*/
class stringtagparsertest
{
public:


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

  /** Extract data between unique tags. */
  static void test01();

  /** Read a taged array */
  static void test02();

  /** Extracting non-unique taged elements. */
  static void test03();
  
  /** Extract C++ code commands and arguments. */
  static void test04();

  /** Unit test extracting data between tags. */
  static int unittest01();
  static int unittest02();
};

#endif



