diff options
author | Artur Signell <artur.signell@itmill.com> | 2011-10-10 08:48:00 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2011-10-10 08:48:00 +0000 |
commit | ebec6b763296e405f5b9e1fcc8dacb80c0e3c054 (patch) | |
tree | 3a234a1d4b941f8f5f0936f00367029535696d59 | |
parent | b9299e1ffa201e35bd48f30b2a57ab58a7c22523 (diff) | |
download | vaadin-framework-ebec6b763296e405f5b9e1fcc8dacb80c0e3c054.tar.gz vaadin-framework-ebec6b763296e405f5b9e1fcc8dacb80c0e3c054.zip |
Also test resources with special names in portals
svn changeset:21657/svn branch:6.7
-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); |