X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPythonAPI%2FTest%2FTestSketcherSetEqual.py;h=4475ff96b707d2904ac82629ae00cf290dc7df6d;hb=refs%2Fheads%2FV9_11_BR;hp=9ffdb877454ca9cff4af5aa104cf8c1e38881412;hpb=df2c0c1d95fab19d117a64046f1f78844c35dad6;p=modules%2Fshaper.git diff --git a/src/PythonAPI/Test/TestSketcherSetEqual.py b/src/PythonAPI/Test/TestSketcherSetEqual.py index 9ffdb8774..4475ff96b 100644 --- a/src/PythonAPI/Test/TestSketcherSetEqual.py +++ b/src/PythonAPI/Test/TestSketcherSetEqual.py @@ -1,5 +1,24 @@ +# Copyright (C) 2014-2023 CEA, EDF +# +# 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 +# + import unittest -import model +from salome.shaper import model import math import TestSketcher from TestSketcher import SketcherTestCase @@ -27,13 +46,13 @@ class SketcherSetEqual(SketcherTestCase): # Set the constraint circle_1 = self.sketch.addCircle(0, 0, 10.0) circle_2 = self.sketch.addCircle(1, 2, 25.0) - self.sketch.setEqual(circle_1.result(), circle_2.result()) + self.sketch.setEqual(circle_1.defaultResult(), circle_2.defaultResult()) # Commit the transaction model.do() # Check the result self.assertAlmostEqual( - circle_1.radiusData().value(), - circle_2.radiusData().value(), + circle_1.radius().value(), + circle_2.radius().value(), delta=TestSketcher.DELTA )