diff --git a/hoot-core-test/src/test/cpp/hoot/core/algorithms/extractors/poi-polygon/PoiPolygonDistanceExtractorTest.cpp b/hoot-core-test/src/test/cpp/hoot/core/algorithms/extractors/poi-polygon/PoiPolygonDistanceExtractorTest.cpp
index e1e305c..e8acbe9 100644
--- a/hoot-core-test/src/test/cpp/hoot/core/algorithms/extractors/poi-polygon/PoiPolygonDistanceExtractorTest.cpp
+++ b/hoot-core-test/src/test/cpp/hoot/core/algorithms/extractors/poi-polygon/PoiPolygonDistanceExtractorTest.cpp
@@ -22,7 +22,7 @@
* This will properly maintain the copyright information. DigitalGlobe
* copyrights will be updated automatically.
*
- * @copyright Copyright (C) 2015, 2016, 2017, 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2015, 2016, 2017, 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
*/
// Hoot
@@ -33,6 +33,7 @@
#include <hoot/core/io/OsmXmlReader.h>
#include <hoot/core/io/OsmXmlWriter.h>
#include <hoot/core/util/MapProjector.h>
+#include <hoot/core/conflate/poi-polygon/PoiPolygonInfoCache.h>
// CPP Unit
#include <cppunit/extensions/HelperMacros.h>
@@ -55,8 +56,10 @@ public:
void runBasicTest()
{
- PoiPolygonDistanceExtractor uut;
OsmMapPtr map(new OsmMap());
+ PoiPolygonInfoCachePtr infoCache(new PoiPolygonInfoCache(map));
+ infoCache->setConfiguration(conf());
+ PoiPolygonDistanceExtractor uut(infoCache);
Coordinate c1[] = { Coordinate(0.0, 0.0), Coordinate(20.0, 0.0),
Coordinate(20.0, 20.0), Coordinate(0.0, 20.0),