X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FTest%2FTestSplitPreview.py;h=5e837005cc6e69c7a91813cb0ca0c49c9b6b854c;hb=fc72d43b677baa05ae7fd317346fd8b723b799ed;hp=ac59f961343baf4ae122c606101b2408ff081815;hpb=751dc40d602e05d2b810ffe1345b74f88ceca03f;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/Test/TestSplitPreview.py b/src/SketchPlugin/Test/TestSplitPreview.py index ac59f9613..5e837005c 100644 --- a/src/SketchPlugin/Test/TestSplitPreview.py +++ b/src/SketchPlugin/Test/TestSplitPreview.py @@ -1,28 +1,30 @@ -## Copyright (C) 2018-20xx 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 -## +# Copyright (C) 2018-2023 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 +# from salome.shaper import model from ModelAPI import * from GeomDataAPI import * +from ConfigAPI import * +Config_PropManager().registerProp("Visualization", "operation_remove_feature_color", "Color of removed feature in operation", Config_Prop.Color, "255, 174, 201") + # base sketch model.begin() partSet = model.moduleDocument() @@ -62,6 +64,7 @@ aPreviewObj = aSplit.reference("PreviewObject") aPreviewObj.setValue(SketchLine_1.feature()) aPreviewPoint = geomDataAPI_Point2D(aSplit.attribute("PreviewPoint")) aPreviewPoint.setValue(aSelectedPoint.pnt()) +assert(featureToPresentation(aSplit).getAISObject(None) is not None) aSession.finishOperation() model.testNbSubFeatures(Sketch, "SketchArc", 0) @@ -80,6 +83,7 @@ aPreviewObj = aSplit.reference("PreviewObject") aPreviewObj.setValue(SketchCircle_1.feature()) aPreviewPoint = geomDataAPI_Point2D(aSplit.attribute("PreviewPoint")) aPreviewPoint.setValue(aSelectedPoint.pnt()) +assert(featureToPresentation(aSplit).getAISObject(None) is not None) aSession.finishOperation() model.testNbSubFeatures(Sketch, "SketchArc", 2)