From: Artur Signell Date: Mon, 10 Oct 2011 08:48:00 +0000 (+0000) Subject: Also test resources with special names in portals X-Git-Tag: 6.7.1~24 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ebec6b763296e405f5b9e1fcc8dacb80c0e3c054;p=vaadin-framework.git Also test resources with special names in portals svn changeset:21657/svn branch:6.7 --- diff --git a/tests/testbench/com/vaadin/tests/integration/JSR286PortletApplication.java b/tests/testbench/com/vaadin/tests/integration/JSR286PortletApplication.java index 9a61edcaab..41d02d35ae 100644 --- a/tests/testbench/com/vaadin/tests/integration/JSR286PortletApplication.java +++ b/tests/testbench/com/vaadin/tests/integration/JSR286PortletApplication.java @@ -44,9 +44,15 @@ public class JSR286PortletApplication extends Application { main = new Window(); setMainWindow(main); - Embedded appResourceTest = new Embedded("Test of ApplicationResources", + Embedded appResourceTest = new Embedded( + "Test of ApplicationResources with full path", new FlagSeResource(this)); main.addComponent(appResourceTest); + Embedded specialNameResourceTest = new Embedded( + "Test ApplicationResources with special names", + new SpecialNameResource(this)); + main.addComponent(specialNameResourceTest); + userInfo.setCaption("User info"); userInfo.setContentMode(Label.CONTENT_PREFORMATTED); main.addComponent(userInfo);