X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPythonAPI%2FTest%2FTestSketcherSetCoincident.py;h=b5f6131708c8cbef3617b7ee2d2b5100d4e01a2e;hb=5a602b4b32487f2922fa28e60e40b14454a503a3;hp=09518cf8008ee52e14d977e3e34537b69e9dbbdd;hpb=d1045f44583d182efaef1a5cfefc251de1b34b62;p=modules%2Fshaper.git diff --git a/src/PythonAPI/Test/TestSketcherSetCoincident.py b/src/PythonAPI/Test/TestSketcherSetCoincident.py index 09518cf80..b5f613170 100644 --- a/src/PythonAPI/Test/TestSketcherSetCoincident.py +++ b/src/PythonAPI/Test/TestSketcherSetCoincident.py @@ -1,5 +1,25 @@ +## 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): @@ -9,10 +29,10 @@ class SketcherSetCoincident(SketcherTestCase): 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_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) @@ -20,4 +40,5 @@ class SketcherSetCoincident(SketcherTestCase): 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