X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FPythonAPI%2FTest%2FTestSketcherSetPerpendicular.py;h=c3f0a6171d869b779954172eeb8fab36bc7e8f07;hb=dadc434ff48893c2334461b325c096935b784436;hp=b572d9e3aee9f7c1123a3af78ec01af938a67f87;hpb=868158fe6d39b25e60ac528295b1c908821e4af5;p=modules%2Fshaper.git diff --git a/src/PythonAPI/Test/TestSketcherSetPerpendicular.py b/src/PythonAPI/Test/TestSketcherSetPerpendicular.py index b572d9e3a..c3f0a6171 100644 --- a/src/PythonAPI/Test/TestSketcherSetPerpendicular.py +++ b/src/PythonAPI/Test/TestSketcherSetPerpendicular.py @@ -1,5 +1,24 @@ +# 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 import TestSketcher from TestSketcher import SketcherTestCase @@ -8,14 +27,15 @@ class SketcherSetPerpendicular(SketcherTestCase): def runTest(self): l1 = self.sketch.addLine(0, 0, 0, 1) l2 = self.sketch.addLine(0, 0, 1, 1) - self.sketch.setPerpendicular(l1.result(), l2.result()) + self.sketch.setPerpendicular(l1, l2) model.do() - - dot_product = (l1.endPointData().x() - l1.startPointData().x()) * \ - (l2.endPointData().x() - l2.startPointData().x()) + \ - (l1.endPointData().y() - l1.startPointData().y()) * \ - (l2.endPointData().y() - l2.startPointData().y()) + + dot_product = (l1.endPoint().x() - l1.startPoint().x()) * \ + (l2.endPoint().x() - l2.startPoint().x()) + \ + (l1.endPoint().y() - l1.startPoint().y()) * \ + (l2.endPoint().y() - l2.startPoint().y()) self.assertAlmostEqual(dot_product, 0.0, delta=TestSketcher.DELTA) if __name__ == "__main__": - unittest.main() \ No newline at end of file + test_program = unittest.main(exit=False) + assert test_program.result.wasSuccessful(), "Test failed" \ No newline at end of file