X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FTest%2FTestArcBehavior.py;h=2b1c9ad919b90bd84e34cdfff4cfc0b8933834c3;hb=fc72d43b677baa05ae7fd317346fd8b723b799ed;hp=2f8c3f4dbec2575cf10dadadff8aa07247a97122;hpb=62e421475a91e80bc0608ebc78d45fedc3f065ed;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/Test/TestArcBehavior.py b/src/SketchPlugin/Test/TestArcBehavior.py index 2f8c3f4db..2b1c9ad91 100644 --- a/src/SketchPlugin/Test/TestArcBehavior.py +++ b/src/SketchPlugin/Test/TestArcBehavior.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 +# + """ TestArcBehavior.py @@ -9,6 +28,7 @@ #========================================================================= # of the test #========================================================================= +from GeomAPI import * from GeomDataAPI import * from ModelAPI import * import math @@ -143,12 +163,12 @@ for aDelta in range(0, 20): aSession.startOperation() anArcStartPoint.setValue(sx, sy+aDelta) # move start point aSession.finishOperation() - model.assertSketchArc(aSketchArc) + model.assertArcValidity(aSketchArc) for aDelta in range(20, -1, -1): aSession.startOperation() anArcStartPoint.setValue(sx, sy+aDelta) # move start point aSession.finishOperation() - model.assertSketchArc(aSketchArc) + model.assertArcValidity(aSketchArc) #========================================================================= # Test that movement of end point of arc does not break the arc #========================================================================= @@ -160,9 +180,9 @@ for aDelta in range(0, 20): aSession.startOperation() anArcEndPoint.setValue(sx+aDelta, sy) # move end point aSession.finishOperation() - model.assertSketchArc(aSketchArc) + model.assertArcValidity(aSketchArc) for aDelta in range(20, -1, -1): aSession.startOperation() anArcEndPoint.setValue(sx+aDelta, sy) # move end point aSession.finishOperation() - model.assertSketchArc(aSketchArc) + model.assertArcValidity(aSketchArc)