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

import java.io.IOException;

import org.junit.Test;

import com.vaadin.tests.tb3.MultiBrowserTest;

public abstract class BaseIconTest extends MultiBrowserTest {

    @Test
    public void LayoutIcon() throws IOException {
        openTestURL();
        compareScreen("icon");
    }

}