Salome HOME
Task #3005 : To be able to create a group on a whole result
[modules/shaper.git] / src / GeomAPI / GeomAPI_Curve.cpp
index 142a9ff5fb6a84a008b7567fa3b96c5824de0816..7276c848597b451c2dca046099d894e6b26ac7aa 100644 (file)
@@ -82,6 +82,8 @@ bool GeomAPI_Curve::isTrimmed() const
   return !isNull() && MY_CURVE->DynamicType() == STANDARD_TYPE(Geom_TrimmedCurve);
 }
 
+// unused in the unit tests for now
+// LCOV_EXCL_START
 GeomCurvePtr GeomAPI_Curve::basisCurve() const
 {
   Handle(Geom_Curve) aCurve = MY_CURVE;
@@ -92,6 +94,7 @@ GeomCurvePtr GeomAPI_Curve::basisCurve() const
   aNewCurve->setImpl(new Handle(Geom_Curve)(aCurve));
   return aNewCurve;
 }
+// LCOV_EXCL_STOP
 
 // ================================================================================================