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

import java.io.IOException;

import org.junit.Test;

import com.vaadin.tests.tb3.MultiBrowserTest;

public abstract class BaseCaptionTest extends MultiBrowserTest {
    @Test
    public void LayoutCaption() throws IOException, InterruptedException {
        openTestURL();
        compareScreen("caption");
    }
}