X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConstructionPlugin%2FTest%2FTestPointName.py;h=5579700911197b14bae4f48e8523ca90a2243d49;hb=d5b5ce2284869d8b97ce638502c58c810bbeb0c7;hp=740bd52df948bef566b46c4c73af4f5cfc80a296;hpb=d4813c98d8a022e99b37d0361d4fc15a193882d9;p=modules%2Fshaper.git diff --git a/src/ConstructionPlugin/Test/TestPointName.py b/src/ConstructionPlugin/Test/TestPointName.py index 740bd52df..557970091 100644 --- a/src/ConstructionPlugin/Test/TestPointName.py +++ b/src/ConstructionPlugin/Test/TestPointName.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 +## + from ModelAPI import * aSession = ModelAPI_Session.get() @@ -6,14 +26,21 @@ aDoc = aSession.moduleDocument() aSession.startOperation() aFeature = aDoc.addFeature("Point") aFeatureData = aFeature.data() +assert(aFeatureData is not None) +# aFeatureData.string("creation_method").setValue("by_xyz") aFeatureData.real("x").setValue(0.) aFeatureData.real("y").setValue(0.) aFeatureData.real("z").setValue(0.) -aFeatureName = aFeatureData.name() +aFeatureData.string("creation_method").setValue("by_xyz") +aFeatureName = aFeature.name() aFeature.execute() aSession.finishOperation() -aFeature1 = aDoc.object("Construction", 0) +# with index "0" is Origin and then - all default constructions +aFeature1 = aDoc.object("Construction", 7) aFeature1Name = aFeature1.data().name() assert (aFeatureName == aFeature1Name) + +from salome.shaper import model +assert(model.checkPythonDump())