X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=test.squish%2Fsuite_STANDALONE%2Ftst_DISTANCE%2Ftest.py;h=b8a626db7692573d0a4e98c4bba91d73ca76ab1f;hb=f59eabf27673ff85f14f2340557c50edd5d0486a;hp=2227b8971325ae750159d2de53d158bf26c46ccd;hpb=a4687a33f6f7eef4ddd4ed60f504db937d905b9a;p=modules%2Fshaper.git diff --git a/test.squish/suite_STANDALONE/tst_DISTANCE/test.py b/test.squish/suite_STANDALONE/tst_DISTANCE/test.py index 2227b8971..b8a626db7 100644 --- a/test.squish/suite_STANDALONE/tst_DISTANCE/test.py +++ b/test.squish/suite_STANDALONE/tst_DISTANCE/test.py @@ -1,3 +1,23 @@ +## 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 +## + def sketch(): line_create((0, 0), (100, 0)) point_create((50, 50)) @@ -6,7 +26,7 @@ def sketch(): point_2 = (412, 324) # line annotaion_point = (262, 319) distance_create(point_1, point_2, annotaion_point, 100) - + mouseClick(waitForObject(":OpenParts*_AppElements_ViewPort"), annotaion_point[0], annotaion_point[1], 0, Qt.LeftButton) waitFor("object.exists(':Distance.First object_QLineEdit')", 20000) test.compare(str(findObject(":Distance.First object_QLineEdit").text), "SketchPoint_1/PointCoordinates") @@ -17,8 +37,8 @@ def sketch(): def main(): source(findFile("scripts", "common.py")) - + startApplication("linux_run.sh") set_defaults() - + sketch_create(help_points("XY_plane"), lambda: sketch())