File indexing completed on 2026-08-06 09:24:28
0001
0002
0003
0004
0005
0006
0007
0008
0009 #include <boost/test/unit_test.hpp>
0010
0011 #include "ThePEG/Repository/StandardRandom.h"
0012 #include "ThePEG/Repository/UseRandom.h"
0013 #include "ThePEG/Config/Unitsystem.h"
0014
0015 struct FixGlobal1 {
0016 FixGlobal1() : randomNumberStandardGenerator(), dummy(&randomNumberStandardGenerator) {
0017 BOOST_TEST_MESSAGE( "setup global fixture for utilitiesTest" );
0018 }
0019
0020 ~FixGlobal1() { BOOST_TEST_MESSAGE( "teardown global fixture for utilitiesTest" ); }
0021
0022 ThePEG::StandardRandom randomNumberStandardGenerator;
0023 ThePEG::UseRandom dummy;
0024 };
0025
0026 BOOST_GLOBAL_FIXTURE(FixGlobal1);