summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2025-01-05 18:15:04 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2025-01-05 18:15:10 +0000
commitbc0bbe935942fa6c54f2e9e71f49351c85d7e956 (patch)
tree4fabb3d39c4dd823ac4ae23bf7474ba1ac5b10a1 /test
parentInclude arc angle in curved terrain walk (diff)
downloadilt-bc0bbe935942fa6c54f2e9e71f49351c85d7e956.tar.bz2
ilt-bc0bbe935942fa6c54f2e9e71f49351c85d7e956.tar.xz
ilt-bc0bbe935942fa6c54f2e9e71f49351c85d7e956.zip
Add helper for merging close elements in a vector
Diffstat (limited to 'test')
-rw-r--r--test/test-lib.cpp34
1 files changed, 33 insertions, 1 deletions
diff --git a/test/test-lib.cpp b/test/test-lib.cpp
index 5f0b5e5..7672acc 100644
--- a/test/test-lib.cpp
+++ b/test/test-lib.cpp
@@ -1,8 +1,8 @@
#define BOOST_TEST_MODULE test_lib
-#include "testHelpers.h"
#include <boost/test/data/test_case.hpp>
#include <boost/test/unit_test.hpp>
+#include <stream_support.h>
#include <collections.h>
#include <glArrays.h>
@@ -69,3 +69,35 @@ BOOST_AUTO_TEST_CASE(triangle_strip_iter)
BOOST_CHECK_EQUAL_COLLECTIONS(
out.begin(), out.end(), TRIANGLE_STRIP_EXPECTED.begin(), TRIANGLE_STRIP_EXPECTED.end());
}
+
+using MergeCloseData = std::tuple<std::vector<int>, int, std::vector<int>>;
+
+BOOST_DATA_TEST_CASE(mergeCloseInts,
+ boost::unit_test::data::make<MergeCloseData>({
+ {{0}, 0, {0}},
+ {{0, 1}, 0, {0, 1}},
+ {{0, 1}, 2, {0, 1}},
+ {{0, 1, 2}, 2, {0, 2}},
+ {{0, 1, 4}, 2, {0, 4}},
+ {{0, 1, 2}, 4, {0, 2}},
+ {{0, 4, 8}, 4, {0, 8}},
+ {{0, 4, 10, 14}, 4, {0, 14}},
+ {{0, 3, 6}, 2, {0, 3, 6}},
+ {{0, 3, 4}, 2, {0, 4}},
+ {{0, 5, 7, 12}, 4, {0, 6, 12}},
+ {{0, 3, 4, 5, 10, 17, 18, 19}, 2, {0, 4, 10, 19}},
+ }),
+ collection, tolerance, expected)
+{
+ auto mutableCollection {collection};
+ BOOST_REQUIRE_NO_THROW((mergeClose(
+ mutableCollection,
+ [](int left, int right) {
+ return std::abs(left - right);
+ },
+ [](int left, int right) {
+ return (left + right) / 2;
+ },
+ tolerance)));
+ BOOST_CHECK_EQUAL_COLLECTIONS(mutableCollection.begin(), mutableCollection.end(), expected.begin(), expected.end());
+}