Salome HOME
updated copyright message
[modules/shaper.git] / src / PythonAPI / Test / TestSketcherAddLine.py
index 41322e80fbbe59852ab3de39e38b4ed3ea6b2a54..09922c1eec8541462961f5ed7d9cf1b930e47967 100644 (file)
@@ -1,13 +1,44 @@
+# 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 modeler
+from salome.shaper import model
 from TestSketcher import SketcherTestCase
 
-class SketcherAddLineTestCase(SketcherTestCase):    
-    def runTest(self):
+class SketcherAddLine(SketcherTestCase):
+    def test_add_line(self):
+        line = self.sketch.addLine(0, 0, 0, 1)
+        model.do()
+        self.assertEqual(line.startPoint().x(), line.endPoint().x())
+        self.assertNotEqual(line.startPoint().y(), line.endPoint().y())
+
+    def test_modify_line(self):
         line = self.sketch.addLine(0, 0, 0, 1)
-        self.assertEqual(line.startPointData().x(), line.endPointData().x())        
-        self.assertNotEqual(line.startPointData().y(), line.endPointData().y())
-        
-    
+        model.do()
+        line.setStartPoint(0, 1)
+        line.setEndPoint(1, 1)
+        self.assertEqual(line.startPoint().x(), 0)
+        self.assertEqual(line.startPoint().y(), 1)
+        self.assertEqual(line.endPoint().x(), 1)
+        self.assertEqual(line.endPoint().y(), 1)
+
+
 if __name__ == "__main__":
-    unittest.main()
\ No newline at end of file
+    test_program = unittest.main(verbosity=2, exit=False)
+    assert test_program.result.wasSuccessful(), "Test failed"
\ No newline at end of file