tolerance_02.run-fail.cpp 750 B

12345678910111213141516171819202122232425
  1. // Copyright (c) 2015 Boost.Test team
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org/libs/test for the library home page.
  6. //[example_code
  7. #define BOOST_TEST_MODULE tolerance_02
  8. #include <boost/test/included/unit_test.hpp>
  9. namespace utf = boost::unit_test;
  10. namespace tt = boost::test_tools;
  11. BOOST_AUTO_TEST_CASE(test1, * utf::tolerance(0.00001))
  12. {
  13. double x = 10.0000000;
  14. double y = 10.0000001;
  15. double z = 10.001;
  16. BOOST_TEST(x == y); // irrelevant by default
  17. BOOST_TEST(x == y, tt::tolerance(0.0));
  18. BOOST_TEST(x == z); // relevant by default
  19. BOOST_TEST(x == z, tt::tolerance(0.001));
  20. }
  21. //]