Salome HOME
Fix the problem of the sketch plane update
[modules/shaper.git] / src / SketchPlugin / Test / TestMoveArc.py
index 10f4ec06a53de266e21c198b0ef15503681ec535..fab42aa61a3a5418f48f362e3c331e3f20f14031 100644 (file)
@@ -1,3 +1,23 @@
+## Copyright (C) 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<mailto:webmaster.salome@opencascade.com>
+##
+
 """
     Test movement of the sketch arc of circle
 """
@@ -31,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])
-    self.assertAlmostEqual(thePoint.y(), theCoordinates[1])
+    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)
+    self.assertAlmostEqual(distPC, radius, 5)
 
   def checkArcRadius(self):
     radius = model.distancePointPoint(self.myArc.center(), self.myArc.startPoint())
-    self.assertAlmostEqual(radius, self.myRadius)
+    self.assertAlmostEqual(radius, self.myRadius, 5)
 
   def fixArcRadius(self):
     self.myRadius = 20.
@@ -325,5 +345,6 @@ class TestMoveArc(unittest.TestCase):
     self.checkPointCoordinates(self.myArc.endPoint(), self.myEnd)
 
 
-if __name__ == '__main__':
-  unittest.main()
+if __name__ == "__main__":
+    test_program = unittest.main(exit=False)
+    assert test_program.result.wasSuccessful(), "Test failed"