Salome HOME
Copyright update 2022
[modules/shaper.git] / src / FeaturesPlugin / Test / TestBooleanCut_ErrorMsg.py
index 65a5a9e69d21c5b3933194ade3a2f9a8622d09f3..9453ad517a1649af7c0113139fb45303f31e956c 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2018-2019  CEA/DEN, EDF R&D
+# Copyright (C) 2018-2022  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
@@ -33,3 +33,18 @@ Cut_1 = aPart.addFeature("Cut")
 Cut_1.execute()
 assert(Cut_1.error() != "")
 aSession.finishOperation()
+
+
+from salome.shaper import model
+
+model.begin()
+partSet = model.moduleDocument()
+Part_1 = model.addPart(partSet)
+Part_1_doc = Part_1.document()
+Sketch_2 = model.addSketch(Part_1_doc, model.defaultPlane("XOY"))
+SketchLine_1 = Sketch_2.addLine(-30, -30, 0, 10)
+model.do()
+Cut_1 = model.addCut(Part_1_doc, [model.selection("COMPOUND", "Sketch_1")], [model.selection("SOLID", "")])
+model.do()
+assert(Cut_1.feature().error() != "")
+model.end()