PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ do_fn_test()

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

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

318 {
319  LWGEOM* input = lwgeom_from_wkt(input_wkt, LW_PARSER_CHECK_NONE);
320  LWGEOM* expected = lwgeom_from_wkt(expected_wkt, LW_PARSER_CHECK_NONE);
321  LWGEOM* observed = transfn(input);
322 
323  ASSERT_LWGEOM_EQUAL(observed, expected);
324 
325  lwgeom_free(input);
326  lwgeom_free(expected);
327  lwgeom_free(observed);
328 }
#define ASSERT_LWGEOM_EQUAL(o, e)
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1138
#define LW_PARSER_CHECK_NONE
Definition: liblwgeom.h:2060
LWGEOM * lwgeom_from_wkt(const char *wkt, const char check)
Definition: lwin_wkt.c:905

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: