Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Redor2017-06-08 15:50:42 +0000
committerLaurent Redor2017-07-05 13:32:47 +0000
commit14d3bc43b6b113649426fdec8fec564c09c7568d (patch)
treec1027b9a7cdd5a9a1da4d38637dd4a09ea11d4f6
parent008acaf306a05d5a8584d187900929023288439f (diff)
downloadorg.eclipse.sirius-14d3bc43b6b113649426fdec8fec564c09c7568d.tar.gz
org.eclipse.sirius-14d3bc43b6b113649426fdec8fec564c09c7568d.tar.xz
org.eclipse.sirius-14d3bc43b6b113649426fdec8fec564c09c7568d.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.java14
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

Back to the top