/** \file
 *
 *  Contains unit tests for the Unit class
 *
 *  Copyright (c) 2007,2008,2009 MBARI
 *  MBARI Proprietary Information.  All Rights Reserved
 */

#ifndef _UNIT_TEST_H_
#define _UNIT_TEST_H_

#include "Unit.h"

#include <cxxtest/TestSuite.h>

/**
 *  Units tests for Unit class
 *
 *  \ingroup units
 */
class Unit_Test : public CxxTest::TestSuite
{
public:

    // dummy test
    void testDummy( void )
    {}

};

#endif // _UNIT_TEST_H
