Salome HOME
Fix the problem of the sketch plane update
[modules/shaper.git] / src / PythonAPI / Test / TestSketcherSetCoincident.py
index 0b4cae6c3e5a1e6ae9e0394f361c3573ecf2fe55..b5f6131708c8cbef3617b7ee2d2b5100d4e01a2e 100644 (file)
@@ -1,12 +1,44 @@
+## Copyright (C) 2014-2017  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<mailto:webmaster.salome@opencascade.com>
+##
+
 import unittest
-import modeler
+from salome.shaper import model
 from TestSketcher import SketcherTestCase
 
-class SketcherSetCoincident(SketcherTestCase):   
-    def runTest(self):
+class SketcherSetCoincident(SketcherTestCase):
+    def test_set_coincident(self):
         l1 = self.sketch.addLine(0, 0, 0, 1)
         l2 = self.sketch.addLine(0, 1, 1, 1)
-        self.sketch.setCoincident(l1.endPointData(), l2.startPointData())
+        self.sketch.setCoincident(l1.endPoint(), l2.startPoint())
+        model.do()
+
+    def test_none_type_arguments(self):
+        l2 = self.sketch.addLine(0, 1, 1, 1)
+        with self.assertRaises(TypeError):
+            self.sketch.setCoincident(None, l2.startPoint())
+
+    def test_empty_arguments(self):
+        l1 = self.sketch.addLine(0, 0, 0, 1)
+        with self.assertRaises(TypeError):
+            self.sketch.setCoincident(l1.endPoint())
 
 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