PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ test_misc_area()

static void test_misc_area ( void  )
static

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

100 {
101  LWGEOM *geom;
102  double area;
103 
104  geom = lwgeom_from_wkt("LINESTRING EMPTY", LW_PARSER_CHECK_ALL);
105  area = lwgeom_area(geom);
106  CU_ASSERT_DOUBLE_EQUAL(area, 0.0, 0.0001);
107  lwgeom_free(geom);
108 }
#define LW_PARSER_CHECK_ALL
Definition: liblwgeom.h:2006
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1144
double lwgeom_area(const LWGEOM *geom)
Definition: lwgeom.c:1872
LWGEOM * lwgeom_from_wkt(const char *wkt, const char check)
Definition: lwin_wkt.c:904
Datum area(PG_FUNCTION_ARGS)

References area(), 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: