Salome HOME
updated copyright message
[modules/shaper.git] / src / PythonAPI / Test / TestSketcherSetEqual.py
index 9ffdb877454ca9cff4af5aa104cf8c1e38881412..f91f087f91615e839cf5d5f89ac125c41fadf56e 100644 (file)
@@ -1,5 +1,24 @@
+# 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
+#
+
 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
             )