src/apps/testapps/testPolygonToCellsReported.c [142:161]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        int64_t actualNumIndexes = countNonNullIndexes(hexagons, numHexagons);

        t_assert(actualNumIndexes == 4609,
                 "got expected polygonToCells size (h3-js#67, 2nd case)");
        free(hexagons);
    }

    // https://github.com/uber/h3/issues/136
    TEST(h3_136) {
        LatLng testVerts[] = {{0.10068990369902957, 0.8920772174196191},
                              {0.10032914690616246, 0.8915914753447348},
                              {0.10033349237998787, 0.8915860128746426},
                              {0.10069496685903621, 0.8920742194546231}};
        GeoLoop testGeoLoop = {.numVerts = 4, .verts = testVerts};
        GeoPolygon testPolygon;
        testPolygon.geoloop = testGeoLoop;
        testPolygon.numHoles = 0;

        int res = 13;
        int64_t numHexagons;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/apps/testapps/testPolygonToCellsReportedExperimental.c [147:166]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        int64_t actualNumIndexes = countNonNullIndexes(hexagons, numHexagons);

        t_assert(actualNumIndexes == 4609,
                 "got expected polygonToCells size (h3-js#67, 2nd case)");
        free(hexagons);
    }

    // https://github.com/uber/h3/issues/136
    TEST(h3_136) {
        LatLng testVerts[] = {{0.10068990369902957, 0.8920772174196191},
                              {0.10032914690616246, 0.8915914753447348},
                              {0.10033349237998787, 0.8915860128746426},
                              {0.10069496685903621, 0.8920742194546231}};
        GeoLoop testGeoLoop = {.numVerts = 4, .verts = testVerts};
        GeoPolygon testPolygon;
        testPolygon.geoloop = testGeoLoop;
        testPolygon.numHoles = 0;

        int res = 13;
        int64_t numHexagons;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



