blob: ebe47287eb69543dc8ebb0eca3837a4300abdaa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package com.vaadin.tests.layoutmanager;
import org.junit.Test;
import org.openqa.selenium.Dimension;
import com.vaadin.tests.tb3.SingleBrowserTest;
public class ConcurrentModificationUITest extends SingleBrowserTest {
@Test
public void noExceptionWhenEnlarging() {
getDriver().manage().window().setSize(new Dimension(100, 100));
openTestURL("debug");
getDriver().manage().window().setSize(new Dimension(200, 200));
assertNoErrorNotifications();
}
}
|