https://github.com/ibex-team/ibex-lib
Raw File
Tip revision: 101ac65abecfd791bc61ebec615337502073f00d authored by jordan08 on 10 October 2017, 20:34:11 UTC
[ibex refact] Creation of AffineEval + creation of evaluator to create
Tip revision: 101ac65
TestFritzJohn.h
/* ============================================================================
 * I B E X - Fritz-John Tests
 * ============================================================================
 * Copyright   : Ecole des Mines de Nantes (FRANCE)
 * License     : This program can be distributed under the terms of the GNU LGPL.
 *               See the file COPYING.LESSER.
 *
 * Author(s)   : Gilles Chabert
 * Created     : May 07, 2013
 * ---------------------------------------------------------------------------- */

#ifndef __TEST_FRITZ_JOHN_H__
#define __TEST_FRITZ_JOHN_H__

#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
#include "utils.h"

namespace ibex {

class TestFritzJohn : public CppUnit::TestFixture {

public:

	CPPUNIT_TEST_SUITE(TestFritzJohn);
	
		CPPUNIT_TEST(test01);
	CPPUNIT_TEST_SUITE_END();

	void test01();
};

CPPUNIT_TEST_SUITE_REGISTRATION(TestFritzJohn);


} // end namespace

#endif /* __TEST_FRITZ_JOHN_H__ */
back to top