https://github.com/ibex-team/ibex-lib
Raw File
Tip revision: 7a5a01abec114ffc7746289c8eda8680f526ec0c authored by gchabert on 07 December 2016, 23:25:04 UTC
Remove hack in plugins/wscript (see issue #243)
Tip revision: 7a5a01a
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