PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ test_misc_area()

static void test_misc_area ( void  )
static

Definition at line 116 of file liblwgeom/cunit/cu_misc.c.

117 {
118  LWGEOM *geom;
119  double area;
120 
121  geom = lwgeom_from_wkt("LINESTRING EMPTY", LW_PARSER_CHECK_ALL);
122  area = lwgeom_area(geom);
123  CU_ASSERT_DOUBLE_EQUAL(area, 0.0, 0.0001);
124  lwgeom_free(geom);
125 }
#define LW_PARSER_CHECK_ALL
Definition: liblwgeom.h:2115
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1155
double lwgeom_area(const LWGEOM *geom)
Definition: lwgeom.c:1885
LWGEOM * lwgeom_from_wkt(const char *wkt, const char check)
Definition: lwin_wkt.c:905

References LW_PARSER_CHECK_ALL, lwgeom_area(), lwgeom_free(), and lwgeom_from_wkt().

Referenced by misc_suite_setup().

Here is the call graph for this function:
Here is the caller graph for this function: