diff options
author | Nicolas FAUVERGUE | 2017-05-11 12:07:21 +0000 |
---|---|---|
committer | vincent lorenzo | 2017-05-12 18:46:14 +0000 |
commit | b800f342de4af3d59196427ad0f8b44f8b1a0349 (patch) | |
tree | 047755fa16c2d1183f0f943035645fd825d359b0 /tests/junit/plugins/editor | |
parent | 3dab9aaaa059edb969def64c919f43db36b1f5ec (diff) | |
download | org.eclipse.papyrus-b800f342de4af3d59196427ad0f8b44f8b1a0349.tar.gz org.eclipse.papyrus-b800f342de4af3d59196427ad0f8b44f8b1a0349.tar.xz org.eclipse.papyrus-b800f342de4af3d59196427ad0f8b44f8b1a0349.zip |
Bug 510951: [Internationalization] Elements from profile does not have
label displayed https://bugs.eclipse.org/bugs/show_bug.cgi?id=510951
Bug 516166: [infra-sashwindows] IPageLifeCycleEventsListener - An
undesired pageActivated() events is sent when a page is closed
https://bugs.eclipse.org/bugs/show_bug.cgi?id=516166
- Add some test condition for internationalization
- Modify the resource management in the internationalization model
resource
- Manage the unload of internationalization like the load
- Modify the JUnit test corresponding to the editor reload after the fix
of bug 516166
Change-Id: I565ac0c88387dbe907b6c027efac9cd412e13af1
Signed-off-by: Nicolas FAUVERGUE <nicolas.fauvergue@cea.fr>
Diffstat (limited to 'tests/junit/plugins/editor')
-rw-r--r-- | tests/junit/plugins/editor/org.eclipse.papyrus.editor.integration.tests/src/org/eclipse/papyrus/editor/integration/tests/tests/EditorReloadTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/junit/plugins/editor/org.eclipse.papyrus.editor.integration.tests/src/org/eclipse/papyrus/editor/integration/tests/tests/EditorReloadTest.java b/tests/junit/plugins/editor/org.eclipse.papyrus.editor.integration.tests/src/org/eclipse/papyrus/editor/integration/tests/tests/EditorReloadTest.java index cd443491697..9a1dd5dd615 100644 --- a/tests/junit/plugins/editor/org.eclipse.papyrus.editor.integration.tests/src/org/eclipse/papyrus/editor/integration/tests/tests/EditorReloadTest.java +++ b/tests/junit/plugins/editor/org.eclipse.papyrus.editor.integration.tests/src/org/eclipse/papyrus/editor/integration/tests/tests/EditorReloadTest.java @@ -350,7 +350,7 @@ public class EditorReloadTest extends AbstractPapyrusTest { // On opening, the table is visible because it's the last tab in its folder Set<String> visible = getVisiblePages(sashContainer); - assertThat(visible, is((Set<String>)ImmutableSet.of("classes", "classes_table"))); + assertThat(visible, is((Set<String>)ImmutableSet.of("activity", "classes"))); // So, activate the activity diagram editorFixture.activateDiagram(employmentEditor, "activity"); |