#ifndef SNAKEINDEXTEST_H
#define SNAKEINDEXTEST_H

/*!
\brief Look at snakeindex indexes. 
*/
class snakeindextest
{
public:

  /** Test the iterator in the forward direction. */
  static void test01();
  /** Test the iterator in the backwards direction. */
  static void test02();
  /** Test iterating in a vertical direction. */
  static void test03();

};

#endif



