PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ test_misc_area()

static void test_misc_area ( void  )
static

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

85 {
86  LWGEOM *geom;
87  double area;
88 
89  geom = lwgeom_from_wkt("LINESTRING EMPTY", LW_PARSER_CHECK_ALL);
90  area = lwgeom_area(geom);
91  CU_ASSERT_DOUBLE_EQUAL(area, 0.0, 0.0001);
92  lwgeom_free(geom);
93 }
#define LW_PARSER_CHECK_ALL
Definition: liblwgeom.h:2086
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1138
double lwgeom_area(const LWGEOM *geom)
Definition: lwgeom.c:1862
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: