X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FTest%2FTestTrimArc04.py;h=80679172dd005620d0f649056bd1d9dac880ea49;hb=28038c772769f15a06376fa01d55529e7daa1aa9;hp=b56d6bd1fb5856fd3540af54e5b39853ca188719;hpb=02ed48c7a4a5cd368caaa54db6724a264ce8322a;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/Test/TestTrimArc04.py b/src/SketchPlugin/Test/TestTrimArc04.py index b56d6bd1f..80679172d 100644 --- a/src/SketchPlugin/Test/TestTrimArc04.py +++ b/src/SketchPlugin/Test/TestTrimArc04.py @@ -1,3 +1,23 @@ +## Copyright (C) 2014-2017 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 +96,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)