]> source.dussan.org Git - vaadin-framework.git/commitdiff
Added generic test for FormLayout
authorArtur Signell <artur@vaadin.com>
Mon, 21 May 2012 13:19:24 +0000 (16:19 +0300)
committerArtur Signell <artur@vaadin.com>
Thu, 31 May 2012 07:50:49 +0000 (10:50 +0300)
tests/testbench/com/vaadin/tests/components/formlayout/FormLayouts.java [new file with mode: 0755]

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 (executable)
index 0000000..e247ce9
--- /dev/null
@@ -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<FormLayout> {
+
+    @Override
+    protected Class getTestClass() {
+        return FormLayout.class;
+    }
+
+}