aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testbench/com/vaadin/tests/tickets/Ticket1673.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testbench/com/vaadin/tests/tickets/Ticket1673.java')
-rw-r--r--tests/testbench/com/vaadin/tests/tickets/Ticket1673.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/testbench/com/vaadin/tests/tickets/Ticket1673.java b/tests/testbench/com/vaadin/tests/tickets/Ticket1673.java
new file mode 100644
index 0000000000..845e49daed
--- /dev/null
+++ b/tests/testbench/com/vaadin/tests/tickets/Ticket1673.java
@@ -0,0 +1,28 @@
+package com.vaadin.tests.tickets;
+
+import com.vaadin.Application;
+import com.vaadin.ui.Button;
+import com.vaadin.ui.Window;
+
+public class Ticket1673 extends com.vaadin.Application {
+
+ @Override
+ public void init() {
+
+ final Window main = new Window("#1673");
+ setMainWindow(main);
+
+ main.addComponent(new Button("close", this, "close"));
+
+ }
+
+ public static Application.SystemMessages getSystemMessages() {
+ Application.CustomizedSystemMessages msgs = new Application.CustomizedSystemMessages();
+
+ msgs.setSessionExpiredURL("http://www.vaadin.com/");
+ msgs.setSessionExpiredCaption("Foo");
+ msgs.setSessionExpiredMessage("Bar");
+
+ return msgs;
+ }
+}