Skip to content

Commit

Permalink
Add very simple unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
jhasse committed May 28, 2018
1 parent 1271d6b commit a9d2cf8
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
8 changes: 8 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,11 @@ lib = static_library('poly2tri', sources : [
'poly2tri/sweep/sweep.cc',
'poly2tri/sweep/sweep_context.cc',
])

thread_dep = dependency('threads')
boost_test_dep = dependency('boost', modules : [ 'unit_test_framework' ], required : false)
if boost_test_dep.found()
test('Unit Test', executable('unittest', [
'unittest/main.cpp',
], dependencies : [boost_test_dep, thread_dep], link_with : lib))
endif
19 changes: 19 additions & 0 deletions unittest/main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE Poly2triTest
#include <boost/test/unit_test.hpp>
#include <poly2tri/poly2tri.h>
#include <iostream>

BOOST_AUTO_TEST_CASE(BasicTest) {
std::vector<p2t::Point*> polyline{
new p2t::Point(0, 0), new p2t::Point(1, 0), new p2t::Point(1, 1),
};
p2t::CDT cdt{polyline};
cdt.Triangulate();
const auto result = cdt.GetTriangles();
assert(result.size() == 1);
BOOST_CHECK_EQUAL(*result[0]->GetPoint(0), *polyline[0]);
BOOST_CHECK_EQUAL(*result[0]->GetPoint(1), *polyline[1]);
BOOST_CHECK_EQUAL(*result[0]->GetPoint(2), *polyline[2]);
result[0]->DebugPrint();
}

0 comments on commit a9d2cf8

Please sign in to comment.