From b7fadd730a78671a0eaf55c36df24c04661ef2c3 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Tue, 16 Nov 2021 00:07:48 +0000 Subject: Swap y,z axis This was a pain... but all the coords make much more sense now and a lot of mystery negation has disappeared. --- test/test-helpers.hpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/test-helpers.hpp (limited to 'test/test-helpers.hpp') diff --git a/test/test-helpers.hpp b/test/test-helpers.hpp new file mode 100644 index 0000000..294b6ff --- /dev/null +++ b/test/test-helpers.hpp @@ -0,0 +1,18 @@ +#ifndef TEST_HELPERS_H +#define TEST_HELPERS_H + +#include +#include + +#define BOOST_CHECK_CLOSE_VEC(a, b) \ + BOOST_TEST_CONTEXT("BOOST_CHECK_CLOSE_VEC(" << a << ", " << b << ")") { \ + BOOST_CHECK_LT(glm::length(a - b), 0.1F); \ + } + +#define BOOST_CHECK_BETWEEN(a, b, c) \ + BOOST_TEST_CONTEXT("BOOST_CHECK_BETWEEN(" << a << ", " << b << ", " << c << ")") { \ + BOOST_CHECK_LE(b, a); \ + BOOST_CHECK_GE(c, a); \ + } + +#endif -- cgit v1.2.3