#ifndef VECTEST_H
#define VECTEST_H

/*!
\brief Testing the vec class.
*/
class vectest
{
public:

  /** Adding some vectors of equal length and number operations. */
  static void test01();

  /** The difference function is used to generate 
      binomial coefficients. */
  static void test02();

};


#endif



