diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2016-04-15 11:06:18 +0300 |
---|---|---|
committer | Teemu Suo-Anttila <teemusa@vaadin.com> | 2016-04-15 14:00:58 +0300 |
commit | 6b8412033e680ce6e5c7827ac504adf132305726 (patch) | |
tree | 0df05d16c324b285610af8910c126b58f4c490c5 /uitest/src/com/vaadin/tests/components/ui/RpcInvocationHandlerToStringTest.java | |
parent | 9192b0bb5e5e699b506b3d3e7df4cf295fbea44a (diff) | |
download | vaadin-framework-6b8412033e680ce6e5c7827ac504adf132305726.tar.gz vaadin-framework-6b8412033e680ce6e5c7827ac504adf132305726.zip |
Build uitest war with maven
Change-Id: I32625901ca27a282253df44c6e776cf9632bacda
Diffstat (limited to 'uitest/src/com/vaadin/tests/components/ui/RpcInvocationHandlerToStringTest.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/ui/RpcInvocationHandlerToStringTest.java | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/uitest/src/com/vaadin/tests/components/ui/RpcInvocationHandlerToStringTest.java b/uitest/src/com/vaadin/tests/components/ui/RpcInvocationHandlerToStringTest.java deleted file mode 100644 index 10a297d47b..0000000000 --- a/uitest/src/com/vaadin/tests/components/ui/RpcInvocationHandlerToStringTest.java +++ /dev/null @@ -1,27 +0,0 @@ -package com.vaadin.tests.components.ui; - -import org.junit.Assert; -import org.junit.Test; - -import com.vaadin.testbench.elements.ButtonElement; -import com.vaadin.testbench.elements.NotificationElement; -import com.vaadin.tests.tb3.MultiBrowserTest; - -public class RpcInvocationHandlerToStringTest extends MultiBrowserTest { - @Test - public void testMethodsOnInvocationProxy() throws Exception { - openTestURL(); - execMethodForProxy("toString()"); - execMethodForProxy("hashCode()"); - execMethodForProxy("equals(false)"); - } - - private void execMethodForProxy(String method) { - $(ButtonElement.class) - .caption("Exec " + method + " for an invocation proxy").first() - .click(); - Assert.assertFalse(method - + " for invocation proxy caused a notification", - $(NotificationElement.class).exists()); - } -} |