https://github.com/ibex-team/ibex-lib
Raw File
Tip revision: 98a553017a200ee4802e164f07b3a76153faefe0 authored by Gilles Chabert on 22 August 2014, 16:44:19 UTC
Minor update
Tip revision: 98a5530
TestCtcForAll.h
/* ============================================================================
 * I B E X - CtcForall 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     : Aug 21, 2014
 * ---------------------------------------------------------------------------- */

#ifndef __TEST_CTC_FOR_ALL_H__
#define __TEST_CTC_FOR_ALL_H__

#include "cpptest.h"
#include "utils.h"

namespace ibex {

class TestCtcForAll : public TestIbex {

public:
	TestCtcForAll() {

		TEST_ADD(TestCtcForAll::test01);
	}

	void test01();
};

} // namespace ibex
#endif // __TEST_CTC_FOR_ALL_H__
back to top