26 Apr
2015
26 Apr
'15
8:22 p.m.
On Sun, Apr 26, 2015 at 12:14 AM, Gennadiy Rozental
Emil Dotchevski
writes: Hello,
Can someone please tell me exactly what do I need to include and which namespace to use to get exact same behavior as:
#include
bool check( float a, float b, float tolerance ) { using namespace boost::test_tools; return check_is_close(a,b,fraction_tolerance(tolerance)); }
(The above used to work with older Boost versions but no longer.)
Do you refer to the develop branch?
BOOST_TEST(a==b, tolerance);
should do the same.
Yes, sorry -- I mean the development branch. Could you provide a replacement for the function above? Note that it returns a value, which isn't the same as BOOST_TEST. Also please indicate what headers need to be included. Emil