18#include <geos/export.h>
31class GEOS_DLL Assert {
34 static void isTrue(
bool assertion,
const std::string& message);
37 isTrue(
bool assertion)
39 isTrue(assertion, std::string());
43 static void equals(
const geom::CoordinateXY& expectedValue,
44 const geom::CoordinateXY& actualValue,
45 const std::string& message);
48 equals(
const geom::CoordinateXY& expectedValue,
49 const geom::CoordinateXY& actualValue)
51 equals(expectedValue, actualValue, std::string());
55 static void shouldNeverReachHere(
const std::string& message);
58 shouldNeverReachHere()
60 shouldNeverReachHere(std::string());
Basic namespace for all GEOS functionalities.
Definition geos.h:39