khanat-opennel-code/code/nel/tools/nel_unit_test/ut_ligo.h

21 lines
359 B
C
Raw Normal View History

2010-05-06 00:08:41 +00:00
#ifndef UT_LIGO
#define UT_LIGO
#include <nel/ligo/primitive.h>
using namespace NLLIGO;
#include "ut_ligo_primitive.h"
// Add a line here when adding a new test CLASS
struct CUTLigo : public Test::Suite
{
CUTLigo()
{
add(auto_ptr<Test::Suite>(new CUTLigoPrimitive));
// Add a line here when adding a new test CLASS
}
};
#endif