blob: b8137e2b55c45c41c16869ebb0e82a8486852e26 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2018 ACIN, fortiss GmbH,
* 2018 Johannes Kepler University
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Ingo Hegny - initial API and implementation and/or initial documentation
* Jose Cabral - Add dummy function for throw_exception
* Alois Zoitl - migrated fb tests to boost test infrastructure
*******************************************************************************/
#define BOOST_TEST_MODULE FORTE_TESTS
#include <boost/test/included/unit_test.hpp>
#include "core/fbtests/fbtesterglobalfixture.h"
#if defined(BOOST_NO_EXCEPTIONS) && BOOST_VERSION < 106500 // At least Boost v1.65 provides a simple NO_EXCEPTION version of throw_exception
void boost::throw_exception(std::exception const&) {
//dummy
}
#endif
//BOOST_TEST_GLOBAL_FIXTURE(MyGlobalFixture)();
//fix for a problem in BOOST_TEST_GLOBAL_FIXTURE, revert when fixed, issue seams to be in BOOST_JOIN
static boost::unit_test::ut_detail::global_fixture_impl<CFBTestDataGlobalFixture> gfCFBTestDataGlobalFixture;