ext/h3/src/src/apps/testapps/testH3Api.c in h3-3.3.1 vs ext/h3/src/src/apps/testapps/testH3Api.c in h3-3.4.0
- old
+ new
@@ -76,6 +76,12 @@
setGeoDegs(&boundary.verts[4], 18.041040385, -66.27640518300001);
setGeoDegs(&boundary.verts[5], 18.041757122, -66.27596711500001);
setGeoDegs(&boundary.verts[6], 18.043007860, -66.27669118199998);
t_assertBoundary(h3, &boundary);
}
+
+ TEST(version) {
+ t_assert(H3_VERSION_MAJOR >= 0, "major version is set");
+ t_assert(H3_VERSION_MINOR >= 0, "minor version is set");
+ t_assert(H3_VERSION_PATCH >= 0, "patch version is set");
+ }
}