src/apps/testapps/testPolygonToCellsReported.c [28:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SUITE(polygonToCells_reported) {
    // https://github.com/uber/h3-js/issues/76#issuecomment-561204505
    TEST(entireWorld) {
        // TODO: Fails for a single worldwide polygon
        LatLng worldVerts[] = {
            {-M_PI_2, -M_PI}, {M_PI_2, -M_PI}, {M_PI_2, 0}, {-M_PI_2, 0}};
        GeoLoop worldGeoLoop = {.numVerts = 4, .verts = worldVerts};
        GeoPolygon worldGeoPolygon = {.geoloop = worldGeoLoop, .numHoles = 0};
        LatLng worldVerts2[] = {
            {-M_PI_2, 0}, {M_PI_2, 0}, {M_PI_2, M_PI}, {-M_PI_2, M_PI}};
        GeoLoop worldGeoLoop2 = {.numVerts = 4, .verts = worldVerts2};
        GeoPolygon worldGeoPolygon2 = {.geoloop = worldGeoLoop2, .numHoles = 0};

        for (int res = 0; res < 3; res++) {
            int64_t polygonToCellsSize;
            t_assertSuccess(H3_EXPORT(maxPolygonToCellsSize)(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/apps/testapps/testPolygonToCellsReportedExperimental.c [30:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SUITE(polygonToCells_reported) {
    // https://github.com/uber/h3-js/issues/76#issuecomment-561204505
    TEST(entireWorld) {
        // TODO: Fails for a single worldwide polygon
        LatLng worldVerts[] = {
            {-M_PI_2, -M_PI}, {M_PI_2, -M_PI}, {M_PI_2, 0}, {-M_PI_2, 0}};
        GeoLoop worldGeoLoop = {.numVerts = 4, .verts = worldVerts};
        GeoPolygon worldGeoPolygon = {.geoloop = worldGeoLoop, .numHoles = 0};
        LatLng worldVerts2[] = {
            {-M_PI_2, 0}, {M_PI_2, 0}, {M_PI_2, M_PI}, {-M_PI_2, M_PI}};
        GeoLoop worldGeoLoop2 = {.numVerts = 4, .verts = worldVerts2};
        GeoPolygon worldGeoPolygon2 = {.geoloop = worldGeoLoop2, .numHoles = 0};

        for (int res = 0; res < 3; res++) {
            int64_t polygonToCellsSize;
            t_assertSuccess(H3_EXPORT(maxPolygonToCellsSize)(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



