X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPythonAPI%2FTest%2FTestSketcherSetCoincident.py;h=b5f6131708c8cbef3617b7ee2d2b5100d4e01a2e;hb=5a602b4b32487f2922fa28e60e40b14454a503a3;hp=ae07123c87ee92e8b273e1593719af523e8ff96d;hpb=c3ae28ba30027cc4a6a757ef623f40adaae96ead;p=modules%2Fshaper.git diff --git a/src/PythonAPI/Test/TestSketcherSetCoincident.py b/src/PythonAPI/Test/TestSketcherSetCoincident.py index ae07123c8..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.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.startPointData()) - + 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.endPointData()) + 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