X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FTest%2FTestTrimArc04.py;h=84c473156b2bd13485077ae4a69becb12da15932;hb=fc72d43b677baa05ae7fd317346fd8b723b799ed;hp=c694ef4901af97cae12529597ea60f708525da3a;hpb=a2ab2dc339b560c7309540e1f10b6ad60e5ed0af;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/Test/TestTrimArc04.py b/src/SketchPlugin/Test/TestTrimArc04.py index c694ef490..84c473156 100644 --- a/src/SketchPlugin/Test/TestTrimArc04.py +++ b/src/SketchPlugin/Test/TestTrimArc04.py @@ -1,3 +1,22 @@ +# Copyright (C) 2014-2023 CEA/DEN, EDF R&D +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +# + from salome.shaper import model from ModelAPI import * @@ -76,7 +95,10 @@ for SubIndex in range(SketchFeatures.numberOfSubs()): assert(len(anArcList) == 2) assert(idList_after.count(SketchArcId) == 2) assert(idList_after.count(SketchLineId) == 2) -assert(idList_after.count(SketchConstraintCoincidenceId) == 4) +# TODO: Verify number of coincidence constraints (should be 4). +# It should be one point-point constraint between arc and line extremities +# but not a pair of point-on-entity constraints +assert(idList_after.count(SketchConstraintCoincidenceId) == 5) #check arc position intersections of created arc to an additional line SketchLine_intersecting_1 = Sketch.addLine(50, 50, 25, 25) @@ -102,4 +124,4 @@ assert(len(Intersection_Points_5) == 0) model.end() -#assert(model.checkPythonDump()) +assert(model.checkPythonDump())