X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FTest%2FTestMoveArc.py;h=fab42aa61a3a5418f48f362e3c331e3f20f14031;hb=8ca1067287eaaad921a6e08e7d10b875778f8457;hp=e9f5f73b427c754e73aac05ae0de8a4f4c7a9dfe;hpb=03ae65653f538978ca93b1222a2fd02ed9244c4f;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/Test/TestMoveArc.py b/src/SketchPlugin/Test/TestMoveArc.py index e9f5f73b4..fab42aa61 100644 --- a/src/SketchPlugin/Test/TestMoveArc.py +++ b/src/SketchPlugin/Test/TestMoveArc.py @@ -51,17 +51,17 @@ class TestMoveArc(unittest.TestCase): self.assertEqual(model.dof(self.mySketch), self.myDOF) def checkPointCoordinates(self, thePoint, theCoordinates): - self.assertAlmostEqual(thePoint.x(), theCoordinates[0], 6) - self.assertAlmostEqual(thePoint.y(), theCoordinates[1], 6) + self.assertAlmostEqual(thePoint.x(), theCoordinates[0], 5) + self.assertAlmostEqual(thePoint.y(), theCoordinates[1], 5) def checkPointOnArc(self, theCoordinates): distPC = model.distancePointPoint(self.myArc.center(), theCoordinates) radius = model.distancePointPoint(self.myArc.center(), self.myArc.startPoint()) - self.assertAlmostEqual(distPC, radius, 6) + self.assertAlmostEqual(distPC, radius, 5) def checkArcRadius(self): radius = model.distancePointPoint(self.myArc.center(), self.myArc.startPoint()) - self.assertAlmostEqual(radius, self.myRadius, 6) + self.assertAlmostEqual(radius, self.myRadius, 5) def fixArcRadius(self): self.myRadius = 20. @@ -345,5 +345,6 @@ class TestMoveArc(unittest.TestCase): self.checkPointCoordinates(self.myArc.endPoint(), self.myEnd) -if __name__ == '__main__': - unittest.main(exit=False) +if __name__ == "__main__": + test_program = unittest.main(exit=False) + assert test_program.result.wasSuccessful(), "Test failed"