From 7adec3cd86956fde2fe3670ed4b0eef97bbb0904 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Mon, 19 Jan 2015 16:16:35 +0200 Subject: Convenience Window.setPosition(x,y) (#16335) Change-Id: If574863fc24cecb9f8d17773833817d67f3a0e12 --- .../src/com/vaadin/tests/server/component/window/WindowTest.java | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'server/tests/src') diff --git a/server/tests/src/com/vaadin/tests/server/component/window/WindowTest.java b/server/tests/src/com/vaadin/tests/server/component/window/WindowTest.java index b74896b7a1..e9e73c1e0f 100644 --- a/server/tests/src/com/vaadin/tests/server/component/window/WindowTest.java +++ b/server/tests/src/com/vaadin/tests/server/component/window/WindowTest.java @@ -50,4 +50,11 @@ public class WindowTest { Assert.assertEquals(b2, window.getAssistiveDescription()[1]); } + + @Test + public void testSetPosition() { + window.setPosition(100, 200); + Assert.assertEquals(100, window.getPositionX()); + Assert.assertEquals(200, window.getPositionY()); + } } -- cgit v1.2.3