aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/test/java/com/vaadin/tests/layoutmanager/ConcurrentModificationUITest.java
blob: 4a64fc3173f273d8186c737c19bcb887e7923f89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.vaadin.tests.layoutmanager;

import org.junit.Test;

import com.vaadin.tests.tb3.SingleBrowserTest;

public class ConcurrentModificationUITest extends SingleBrowserTest {

    @Test
    public void noExceptionWhenEnlarging() {
        testBench().resizeViewPortTo(100, 100);
        openTestURL("debug");
        testBench().resizeViewPortTo(200, 200);
        assertNoErrorNotifications();
    }
}