PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ do_fn_test()

void do_fn_test ( LWGEOM *(*)(LWGEOM *)  transfn,
char *  input_wkt,
char *  expected_wkt 
)

Definition at line 314 of file liblwgeom/cunit/cu_tester.c.

315 {
316  LWGEOM* input = lwgeom_from_wkt(input_wkt, LW_PARSER_CHECK_NONE);
317  LWGEOM* expected = lwgeom_from_wkt(expected_wkt, LW_PARSER_CHECK_NONE);
318  LWGEOM* observed = transfn(input);
319 
320  ASSERT_LWGEOM_EQUAL(observed, expected);
321 
322  lwgeom_free(input);
323  lwgeom_free(expected);
324  lwgeom_free(observed);
325 }
#define ASSERT_LWGEOM_EQUAL(o, e)
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1144
#define LW_PARSER_CHECK_NONE
Definition: liblwgeom.h:2005
LWGEOM * lwgeom_from_wkt(const char *wkt, const char check)
Definition: lwin_wkt.c:904

References ASSERT_LWGEOM_EQUAL, LW_PARSER_CHECK_NONE, lwgeom_free(), and lwgeom_from_wkt().

Referenced by test_lwmpoint_from_lwgeom().

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