From f59eabf27673ff85f14f2340557c50edd5d0486a Mon Sep 17 00:00:00 2001 From: azv Date: Tue, 30 Oct 2018 18:38:57 +0300 Subject: [PATCH] Sort alphabetically unit tests for SketchPlugin module --- src/SketchPlugin/CMakeLists.txt | 230 ++++++++++++++++---------------- 1 file changed, 116 insertions(+), 114 deletions(-) diff --git a/src/SketchPlugin/CMakeLists.txt b/src/SketchPlugin/CMakeLists.txt index bf4ffcb76..2682d7b85 100644 --- a/src/SketchPlugin/CMakeLists.txt +++ b/src/SketchPlugin/CMakeLists.txt @@ -153,123 +153,125 @@ INSTALL(FILES ${XML_RESOURCES} DESTINATION ${SHAPER_INSTALL_XML_RESOURCES}) INSTALL(DIRECTORY icons/ DESTINATION ${SHAPER_INSTALL_XML_RESOURCES}/icons/Sketch) INSTALL(FILES ${TEXT_RESOURCES} DESTINATION ${SHAPER_INSTALL_XML_RESOURCES}) -ADD_UNIT_TESTS(TestSketchPointLine.py - TestCreateArcByCenterStartEnd.py - TestCreateArcByThreePoints.py - TestCreateArcByTangentEdge.py - TestCreateArcChangeType.py - TestCreateCircleByCenterAndPassed.py - TestCreateCircleByThreePoints.py - TestCreateCircleChangeType.py - TestConstraintCoincidence.py - TestConstraintCollinear.py - TestConstraintLength.py - TestConstraintDistance.py - TestConstraintDistanceHorizontal.py - TestConstraintDistanceVertical.py - TestConstraintDistanceBehavior.py - TestConstraintParallel.py - TestConstraintPerpendicular.py - TestConstraintRadius.py - TestConstraintFixed.py - TestConstraintHorizontal.py - TestConstraintHorizontalValidator.py - TestConstraintVertical.py - TestConstraintEqual.py - TestConstraintTangent.py - TestConstraintAngle.py - TestConstraintMiddlePoint.py - TestEdgesOrder.py - TestMirror.py - TestMultiTranslation.py - TestMultiRotation.py - TestMultiRotationWithParameter.py - TestMultiRotation01.py - TestMultiRotation02.py - TestMultiRotation03.py - TestMultiRotation04.py - TestMultiRotation05.py - TestFillet.py - TestFilletAfterFolder.py - TestFilletInteracting.py - TestRectangle.py - TestProjection.py - TestProjectionIntoResult.py - TestSplit.py - TestHighload.py - TestSnowflake.py - TestArcBehavior.py - TestRemoveSketch.py - Test1061.py - Test1673.py - Test1924.py - Test1966.py - Test1967.py - Test2062.py - Test2095.py - Test2115.py - TestTrimArc01.py - TestTrimArc02.py - TestTrimArc03.py - TestTrimArc04.py - TestTrimArc05.py - TestTrimArc06.py - TestTrimArc07.py - TestTrimCircle01.py - TestTrimCircle02.py - TestTrimCircle03.py - TestTrimCircle04.py - TestTrimCircle05.py - TestTrimCircleAndArc01.py - TestTrimLine01.py - TestTrimLine02.py - Test2229.py - Test2239.py - TestDistanceDump.py - TestDistanceSignedVsUnsigned01.py - TestDistanceSignedVsUnsigned02.py - TestDistanceSignedVsUnsigned03.py - TestDistanceSignedVsUnsigned04.py - TestDistanceSignedVsUnsigned05.py - TestSignedDistancePointPoint.py - TestSignedDistancePointLine.py - TestIntersectionWithLine.py - TestIntersectionWithCircle.py - TestIntersectionWithSpline.py - TestIntersectionChangeEdge.py - Test2273.py - Test2280.py - Test2287.py - Test2341.py - Test2390.py - Test2393.py - Test2425.py - Test2440.py - Test2157.py - Test2157_2.py - Test2481.py - Test1963.py - Test2034_1.py - Test2034_2.py - Test2034_3.py - Test2134.py - TestDegeneratedGeometry.py - Test2119.py - Test2224.py - Test2427.py - Test1577.py - Test1578.py - Test2654.py - Test1779.py - Test2711.py +ADD_UNIT_TESTS( + Test1061.py + Test1577.py + Test1578.py + Test1673.py + Test1779.py + Test1924.py + Test1963.py + Test1966.py + Test1967.py + Test2034_1.py + Test2034_2.py + Test2034_3.py + Test2062.py + Test2095.py + Test2115.py + Test2119.py + Test2134.py + Test2157.py + Test2157_2.py + Test2224.py + Test2229.py + Test2239.py + Test2273.py + Test2280.py + Test2287.py + Test2341.py + Test2390.py + Test2393.py + Test2425.py + Test2427.py + Test2440.py + Test2481.py + Test2654.py + Test2711.py + TestArcBehavior.py + TestConstraintAngle.py + TestConstraintCoincidence.py + TestConstraintCollinear.py + TestConstraintDistance.py + TestConstraintDistanceBehavior.py + TestConstraintDistanceHorizontal.py + TestConstraintDistanceVertical.py + TestConstraintEqual.py + TestConstraintFixed.py + TestConstraintHorizontal.py + TestConstraintHorizontalValidator.py + TestConstraintLength.py + TestConstraintMiddlePoint.py + TestConstraintParallel.py + TestConstraintPerpendicular.py + TestConstraintRadius.py + TestConstraintTangent.py + TestConstraintVertical.py + TestCreateArcByCenterStartEnd.py + TestCreateArcByTangentEdge.py + TestCreateArcByThreePoints.py + TestCreateArcChangeType.py + TestCreateCircleByCenterAndPassed.py + TestCreateCircleByThreePoints.py + TestCreateCircleChangeType.py + TestDegeneratedGeometry.py + TestDistanceDump.py + TestDistanceSignedVsUnsigned01.py + TestDistanceSignedVsUnsigned02.py + TestDistanceSignedVsUnsigned03.py + TestDistanceSignedVsUnsigned04.py + TestDistanceSignedVsUnsigned05.py + TestEdgesOrder.py + TestFillet.py + TestFilletAfterFolder.py + TestFilletInteracting.py + TestHighload.py + TestIntersectionChangeEdge.py + TestIntersectionWithCircle.py + TestIntersectionWithLine.py + TestIntersectionWithSpline.py + TestMirror.py + TestMultiRotation.py + TestMultiRotation01.py + TestMultiRotation02.py + TestMultiRotation03.py + TestMultiRotation04.py + TestMultiRotation05.py + TestMultiRotationWithParameter.py + TestMultiTranslation.py + TestProjection.py + TestProjectionIntoResult.py + TestProjectionUpdate.py + TestRectangle.py + TestRemoveSketch.py + TestSignedDistancePointLine.py + TestSignedDistancePointPoint.py + TestSketchPointLine.py + TestSnowflake.py + TestSplit.py + TestTrimArc01.py + TestTrimArc02.py + TestTrimArc03.py + TestTrimArc04.py + TestTrimArc05.py + TestTrimArc06.py + TestTrimArc07.py + TestTrimCircle01.py + TestTrimCircle02.py + TestTrimCircle03.py + TestTrimCircle04.py + TestTrimCircle05.py + TestTrimCircleAndArc01.py + TestTrimLine01.py + TestTrimLine02.py ) if(${SKETCHER_CHANGE_RADIUS_WHEN_MOVE}) ADD_UNIT_TESTS( - TestMovePoint.py - TestMoveLine.py - TestMoveCircle.py - TestMoveArc.py - TestMovementComplex.py + TestMoveArc.py + TestMoveCircle.py + TestMoveLine.py + TestMovementComplex.py + TestMovePoint.py ) endif() -- 2.39.2