Salome HOME
Fix coding style problems.
[modules/shaper.git] / src / PythonAPI / Test / TestSketcher.py
index ece5331de30312f9df483e124e88a4e1dad2cc04..95742b8e796bed5a484f2beeb1e7fbf4fa03b533 100644 (file)
@@ -1,26 +1,37 @@
+# Copyright (C) 2014-2019  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 modeler
+from salome.shaper import model
+
+# Delta value for almost equal comparisons
+DELTA = 1e-10
 
 class SketcherTestCase(unittest.TestCase):
     def setUp(self):
-        modeler.begin()
-        partset = modeler.moduleDocument()
-        part = modeler.addPart(partset).document()
-        plane = modeler.defaultPlane("XOY")
-        self.sketch = modeler.addSketch(part, plane)
+        model.begin()
+        partset = model.moduleDocument()
+        part = model.addPart(partset).document()
+        plane = model.defaultPlane("XOY")
+        self.sketch = model.addSketch(part, plane)
 
     def tearDown(self):
-        modeler.end()
-
-    def test_add_line(self):
-        print "add_line"
-        self.sketch.addLine(0, 0, 0, 1)
-    
-    def test_set_coincident(self):
-        print "set_coincident"
-        l1 = self.sketch.addLine(0, 0, 0, 1)
-        l2 = self.sketch.addLine(0, 1, 1, 1)
-        self.sketch.setCoincident(l1.endPointData(), l2.startPointData())
-
-if __name__ == "__main__":
-    unittest.main()
+        model.end()
+        assert(model.checkPythonDump())
+        model.reset()