From: Artur Signell Date: Mon, 21 May 2012 13:19:24 +0000 (+0300) Subject: Added generic test for FormLayout X-Git-Tag: 7.0.0.alpha3~220 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=42c86ae274b041650b0745755167cb668ba4ae8d;p=vaadin-framework.git Added generic test for FormLayout --- diff --git a/tests/testbench/com/vaadin/tests/components/formlayout/FormLayouts.java b/tests/testbench/com/vaadin/tests/components/formlayout/FormLayouts.java new file mode 100755 index 0000000000..e247ce95f7 --- /dev/null +++ b/tests/testbench/com/vaadin/tests/components/formlayout/FormLayouts.java @@ -0,0 +1,16 @@ +/* +@VaadinApache2LicenseForJavaFiles@ + */ +package com.vaadin.tests.components.formlayout; + +import com.vaadin.tests.components.AbstractOrderedLayoutTest; +import com.vaadin.ui.FormLayout; + +public class FormLayouts extends AbstractOrderedLayoutTest { + + @Override + protected Class getTestClass() { + return FormLayout.class; + } + +}