// $Id$ // // Test Suite for geos::noding::SegmentPointComparator class. // TUT #include // GEOS #include #include #include #include #include namespace tut { // // Test Group // // Common data used by tests struct test_segmentpointcomparator_data { typedef std::auto_ptr CoordinateSequenceAutoPtr; typedef std::auto_ptr SegmentStringAutoPtr; const geos::geom::CoordinateSequenceFactory* csFactory; test_segmentpointcomparator_data() : csFactory(geos::geom::CoordinateArraySequenceFactory::instance()) {} }; typedef test_group group; typedef group::object object; group test_segmentpointcomparator_group("geos::noding::SegmentPointComparator"); // // Test Cases // // TODO template<> template<> void object::test<1>() { // TODO - mloskot add test cases } } // namespace tut