]> source.dussan.org Git - vaadin-framework.git/commitdiff
Also test resources with special names in portals
authorArtur Signell <artur.signell@itmill.com>
Mon, 10 Oct 2011 08:48:00 +0000 (08:48 +0000)
committerArtur Signell <artur.signell@itmill.com>
Mon, 10 Oct 2011 08:48:00 +0000 (08:48 +0000)
svn changeset:21657/svn branch:6.7

tests/testbench/com/vaadin/tests/integration/JSR286PortletApplication.java

index 9a61edcaabf27a46d22de52c7dae44557557b2af..41d02d35ae5a6189ba09a6c51b2a3b0f17464e32 100644 (file)
@@ -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);