X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPythonAPI%2FTest%2FTestSketcherSetCoincident.py;h=b5f6131708c8cbef3617b7ee2d2b5100d4e01a2e;hb=5a602b4b32487f2922fa28e60e40b14454a503a3;hp=8f75d13939ff92e21a0744ed5a49446a9a67861e;hpb=df2c0c1d95fab19d117a64046f1f78844c35dad6;p=modules%2Fshaper.git diff --git a/src/PythonAPI/Test/TestSketcherSetCoincident.py b/src/PythonAPI/Test/TestSketcherSetCoincident.py index 8f75d1393..b5f613170 100644 --- a/src/PythonAPI/Test/TestSketcherSetCoincident.py +++ b/src/PythonAPI/Test/TestSketcherSetCoincident.py @@ -1,23 +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 +## + 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