Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authortfesenko2011-03-10 11:14:50 +0000
committertfesenko2011-03-10 11:14:50 +0000
commit2a166d30d35cea88f1f123a7e72abe4f5377951c (patch)
tree3095949a374e1b721c97306e0dd345caa25a167e /tests
parentee48db520b1a1593315a64edb7bc2164629ba9b6 (diff)
downloadorg.eclipse.papyrus-2a166d30d35cea88f1f123a7e72abe4f5377951c.tar.gz
org.eclipse.papyrus-2a166d30d35cea88f1f123a7e72abe4f5377951c.tar.xz
org.eclipse.papyrus-2a166d30d35cea88f1f123a7e72abe4f5377951c.zip
Bug 337734 - [Wizard] Allow the user to select several diagram categories and create several models at once
Diffstat (limited to 'tests')
-rw-r--r--tests/junit/plugins/core/org.eclipse.papyrus.core.tests/test/org/eclipse/papyrus/core/wizard/TestCreateModelWizard.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/junit/plugins/core/org.eclipse.papyrus.core.tests/test/org/eclipse/papyrus/core/wizard/TestCreateModelWizard.java b/tests/junit/plugins/core/org.eclipse.papyrus.core.tests/test/org/eclipse/papyrus/core/wizard/TestCreateModelWizard.java
index 329ebb86bf5..9f037de6ea1 100644
--- a/tests/junit/plugins/core/org.eclipse.papyrus.core.tests/test/org/eclipse/papyrus/core/wizard/TestCreateModelWizard.java
+++ b/tests/junit/plugins/core/org.eclipse.papyrus.core.tests/test/org/eclipse/papyrus/core/wizard/TestCreateModelWizard.java
@@ -61,8 +61,8 @@ public class TestCreateModelWizard extends TestNewModelWizardBase {
}
@Override
- protected String getDiagramCategoryId() {
- return CreateProfileModelCommand.COMMAND_ID;
+ protected String[] getDiagramCategoryIds() {
+ return new String[]{CreateProfileModelCommand.COMMAND_ID};
}
};
@@ -82,8 +82,8 @@ public class TestCreateModelWizard extends TestNewModelWizardBase {
}
@Override
- protected String getDiagramCategoryId() {
- return "uml";
+ protected String[] getDiagramCategoryIds() {
+ return new String[]{"uml"};
}
};

Back to the top