Salome HOME
Update copyrights
[modules/shaper.git] / src / PythonAPI / Test / TestSketcherSetCoincident.py
index 8f75d13939ff92e21a0744ed5a49446a9a67861e..a21ba34a9d9b6995ae44af22ec3c641492d50050 100644 (file)
@@ -1,23 +1,43 @@
+# 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 model
+from salome.shaper import model
 from TestSketcher import SketcherTestCase
 
-class SketcherSetCoincident(SketcherTestCase):   
+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.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(verbosity=2)
\ 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