diff options
| author | Laurent Redor | 2017-06-08 15:50:42 +0000 |
|---|---|---|
| committer | Laurent Redor | 2017-06-16 14:23:13 +0000 |
| commit | 5cac85aa819a8a3bc1fa4c18d6add4f2f8500e05 (patch) | |
| tree | 3ef3f7059fa7f5c8c4efec7fb18014d0f589934a | |
| parent | 51cf66202190f29c64aaea3e796483c83e8287ad (diff) | |
| download | org.eclipse.sirius-5cac85aa819a8a3bc1fa4c18d6add4f2f8500e05.tar.gz org.eclipse.sirius-5cac85aa819a8a3bc1fa4c18d6add4f2f8500e05.tar.xz org.eclipse.sirius-5cac85aa819a8a3bc1fa4c18d6add4f2f8500e05.zip | |
[482124] Re-activate some commented tests
The commit 8b4a0135 [1] has commented accidentally some tests. This
commit only activates them again.
[1]
http://git.eclipse.org/c/sirius/org.eclipse.sirius.git/commit/?id=8b4a01355fdf6e1cf54418f6e5e312f1301c3675
Bug: 482124
Change-Id: I09ea9d45c5183ea38fabc2689a685dae69111b3d
Signed-off-by: Laurent Redor <laurent.redor@obeo.fr>
| -rw-r--r-- | plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/BendpointsStabilityOnMovesSpecificCasesTest.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/BendpointsStabilityOnMovesSpecificCasesTest.java b/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/BendpointsStabilityOnMovesSpecificCasesTest.java index 98545bb1b9..049ab75851 100644 --- a/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/BendpointsStabilityOnMovesSpecificCasesTest.java +++ b/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/BendpointsStabilityOnMovesSpecificCasesTest.java @@ -207,7 +207,7 @@ public class BendpointsStabilityOnMovesSpecificCasesTest extends AbstractSiriusS * Test that first point is moved has expected and that draw2d and GMF last * points are consistency. */ - public void _testFirstPointConsistency() { + public void testFirstPointConsistency() { final Point moveDelta = new Point(20, 20); AssertPointLocationFunction assertPointLocationFunction = new AssertPointLocationFunction(moveDelta); testFirstPointConsistency(moveDelta, 0, assertPointLocationFunction); @@ -218,7 +218,7 @@ public class BendpointsStabilityOnMovesSpecificCasesTest extends AbstractSiriusS * points are consistency. In this case, the first segment is merged with * the second one. */ - public void _testFirstPointConsistencyWithMergeSegment() { + public void testFirstPointConsistencyWithMergeSegment() { final Point moveDelta = new Point(0, 99); AssertPointLocationFunction assertPointLocationFunction = new AssertPointLocationFunction(moveDelta) { Point otherExpectedPoint; @@ -262,7 +262,7 @@ public class BendpointsStabilityOnMovesSpecificCasesTest extends AbstractSiriusS * Test that first point is moved has expected and that draw2d and GMF last * points are consistency (when the first segment is inverted). */ - public void _testFirstPointConsistencyWithFirstSegmentInverted() { + public void testFirstPointConsistencyWithFirstSegmentInverted() { final Point moveDelta = new Point(340, 0); AssertPointLocationFunction assertPointLocationFunction = new AssertPointLocationFunction(moveDelta) { @Override @@ -305,7 +305,7 @@ public class BendpointsStabilityOnMovesSpecificCasesTest extends AbstractSiriusS * Test that last point is moved has expected and that draw2d and GMF last * points are consistency. */ - public void _testLastPointConsistency() { + public void testLastPointConsistency() { Point moveDelta = new Point(-20, 50); AssertPointLocationFunction assertPointLocationFunction = new AssertPointLocationFunction(moveDelta); testLastPointConsistency(moveDelta, 0, assertPointLocationFunction); @@ -316,7 +316,7 @@ public class BendpointsStabilityOnMovesSpecificCasesTest extends AbstractSiriusS * points are consistency. In this case, the last segment is merged with the * previous one. */ - public void _testLastPointConsistencyWithMergeSegment() { + public void testLastPointConsistencyWithMergeSegment() { Point moveDelta = new Point(0, -139); AssertPointLocationFunction assertPointLocationFunction = new AssertPointLocationFunction(moveDelta) { Point otherExpectedPoint; @@ -345,7 +345,7 @@ public class BendpointsStabilityOnMovesSpecificCasesTest extends AbstractSiriusS * Test that last point is moved has expected and that draw2d and GMF last * points are consistency (when the last segment is removed). */ - public void _testLastPointConsistencyWithLastSegmentRemoval() { + public void testLastPointConsistencyWithLastSegmentRemoval() { final Point moveDelta = new Point(-120, 50); AssertPointLocationFunction assertPointLocationFunction = new AssertPointLocationFunction(moveDelta) { @Override @@ -360,7 +360,7 @@ public class BendpointsStabilityOnMovesSpecificCasesTest extends AbstractSiriusS * Test that last point is moved has expected and that draw2d and GMF last * points are consistency (when the last segment is inverted). */ - public void _testLastPointConsistencyWithLastSegmentInverted() { + public void testLastPointConsistencyWithLastSegmentInverted() { final Point moveDelta = new Point(-340, 0); AssertPointLocationFunction assertPointLocationFunction = new AssertPointLocationFunction(moveDelta) { @Override |
