Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetya Sabeva2012-10-08 09:57:55 +0000
committerPetya Sabeva2012-10-08 09:57:55 +0000
commit9e6f6801d244681502d7380ab634df1711c26816 (patch)
tree35a8cd096d6bb7aa9f442eff77d040a706b8c0d1 /jpa_diagram_editor
parent8b96f0a32f223fc995722a6349d4667948ddb6b0 (diff)
downloadwebtools.dali-9e6f6801d244681502d7380ab634df1711c26816.tar.gz
webtools.dali-9e6f6801d244681502d7380ab634df1711c26816.tar.xz
webtools.dali-9e6f6801d244681502d7380ab634df1711c26816.zip
Disable tests that reqruire mouse move.
Diffstat (limited to 'jpa_diagram_editor')
-rw-r--r--jpa_diagram_editor/tests/org.eclipse.jpt.jpadiagrameditor.swtbot.tests/src/org/eclipse/jpt/jpadiagrameditor/swtbot/tests/ui/editor/JPADiagramEditorSWTBotTest.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/jpa_diagram_editor/tests/org.eclipse.jpt.jpadiagrameditor.swtbot.tests/src/org/eclipse/jpt/jpadiagrameditor/swtbot/tests/ui/editor/JPADiagramEditorSWTBotTest.java b/jpa_diagram_editor/tests/org.eclipse.jpt.jpadiagrameditor.swtbot.tests/src/org/eclipse/jpt/jpadiagrameditor/swtbot/tests/ui/editor/JPADiagramEditorSWTBotTest.java
index 209b709541..6c5209efbd 100644
--- a/jpa_diagram_editor/tests/org.eclipse.jpt.jpadiagrameditor.swtbot.tests/src/org/eclipse/jpt/jpadiagrameditor/swtbot/tests/ui/editor/JPADiagramEditorSWTBotTest.java
+++ b/jpa_diagram_editor/tests/org.eclipse.jpt.jpadiagrameditor.swtbot.tests/src/org/eclipse/jpt/jpadiagrameditor/swtbot/tests/ui/editor/JPADiagramEditorSWTBotTest.java
@@ -263,6 +263,7 @@ public class JPADiagramEditorSWTBotTest extends SWTBotGefTestCase {
/**
* Adds a new entity and rename it
*/
+ @Ignore
@Test
public void testDirectEditingEntity(){
Utils.sayTestStarted("testDirectEditingEntity");
@@ -292,6 +293,7 @@ public class JPADiagramEditorSWTBotTest extends SWTBotGefTestCase {
/**
* Test that the source of the entity is opened, when is double clicked on it
*/
+ @Ignore
@Test
public void testDoubleClickOnEntity(){
Utils.sayTestStarted("testDoubleClickOnEntity");
@@ -372,6 +374,7 @@ public class JPADiagramEditorSWTBotTest extends SWTBotGefTestCase {
/**
* Rename the entity using its context menu "Refactor Entity Class -> Rename..."
*/
+ @Ignore
@Test
public void testRenameEntityViaMenu(){
Utils.sayTestStarted("testRenameEntityViaMenu");
@@ -410,6 +413,7 @@ public class JPADiagramEditorSWTBotTest extends SWTBotGefTestCase {
/**
* Move the entity class using the entity's context menu "Refactor Entity Class -> Move..."
*/
+ @Ignore
@Test
public void testMoveEntityViaMenu() throws JavaModelException{
Utils.sayTestStarted("testMoveEntityViaMenu");
@@ -719,6 +723,7 @@ public class JPADiagramEditorSWTBotTest extends SWTBotGefTestCase {
/**
* Collapse/expand "Primary Key" section by double click on it
*/
+ @Ignore
@Test
public void testCollapseExpandCompartmentByDoubleClick(){
Utils.sayTestStarted("testCollapseExpandCompartmentByDoubleClick");
@@ -754,6 +759,7 @@ public class JPADiagramEditorSWTBotTest extends SWTBotGefTestCase {
/**
* Collapse/expand compartment by its context menu
*/
+ @Ignore
@Test
public void testCollapseExpandCompartmentByContextMenu(){
Utils.sayTestStarted("testCollapseExpandCompartmentByContextMenu");

Back to the top