]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Adjust TestConstraintHorizontalValidator.py
authorazv <azv@opencascade.com>
Thu, 27 Apr 2017 07:27:07 +0000 (10:27 +0300)
committerazv <azv@opencascade.com>
Thu, 27 Apr 2017 07:27:07 +0000 (10:27 +0300)
src/SketchPlugin/Test/TestConstraintHorizontalValidator.py

index ff225fbc46f6bcdb31ee375d815dead28c0db003..caf2f1a4932e59f25011d7280a057ea938ccf87f 100644 (file)
@@ -22,17 +22,10 @@ Part_1_doc = Part_1.document()
 #=========================================================================
 Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOZ"))
 SketchLine_1 = Sketch_1.addLine(20, 20, 40, 80)
-SketchLine_1.setName("SketchLine_1")
-SketchLine_1.result().setName("SketchLine_1")
 SketchLine_2 = Sketch_1.addLine(40, 80, 60, 40)
-SketchLine_2.setName("SketchLine_2")
-SketchLine_2.result().setName("SketchLine_2")
 SketchConstraintCoincidence_1 = Sketch_1.setCoincident(SketchLine_1.endPoint(), SketchLine_2.startPoint())
-SketchConstraintCoincidence_1.setName("SketchConstraintCoincidence_2")
 SketchConstraintHorizontal_1 = Sketch_1.setHorizontal(SketchLine_1.result())
 SketchConstraintVertical_1 = Sketch_1.setVertical(SketchLine_1.result())
-SketchConstraintHorizontal_1.setName("SketchConstraintHorizontal_1")
-SketchConstraintVertical_1.setName("SketchConstraintVertical_1")
 model.do()
 #=========================================================================
 # Checking that sketch and constraints become invalid when to one line
@@ -40,7 +33,7 @@ model.do()
 #=========================================================================
 aFactory = ModelAPI_Session.get().validators()
 assert(aFactory.validate(Sketch_1.feature()))
-assert(Sketch_1.feature().error() == "Sketch objects are not defined")
+assert(Sketch_1.feature().error() != '')
 #=========================================================================
 # Remove duplicated Vertical constraints
 #=========================================================================
@@ -54,4 +47,4 @@ model.do()
 assert(aFactory.validate(Sketch_1.feature()))
 assert(Sketch_1.feature().error() == '')
 
-#assert(model.checkPythonDump())
+assert(model.checkPythonDump())