diff options
-rw-r--r-- | tests/testbench/com/vaadin/tests/integration/JSR286PortletApplication.java | 8 |
1 files changed, 7 insertions, 1 deletions
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); |