]> source.dussan.org Git - vaadin-framework.git/commitdiff
Test case for #3864
authorArtur Signell <artur.signell@itmill.com>
Tue, 15 Dec 2009 14:58:39 +0000 (14:58 +0000)
committerArtur Signell <artur.signell@itmill.com>
Tue, 15 Dec 2009 14:58:39 +0000 (14:58 +0000)
svn changeset:10323/svn branch:6.2

tests/src/com/vaadin/tests/containers/TableWithFileSystemContainer.java [new file with mode: 0644]

diff --git a/tests/src/com/vaadin/tests/containers/TableWithFileSystemContainer.java b/tests/src/com/vaadin/tests/containers/TableWithFileSystemContainer.java
new file mode 100644 (file)
index 0000000..20567e7
--- /dev/null
@@ -0,0 +1,33 @@
+package com.vaadin.tests.containers;
+
+import java.io.File;
+
+import com.vaadin.data.util.FilesystemContainer;
+import com.vaadin.tests.components.TestBase;
+import com.vaadin.ui.Table;
+import com.vaadin.ui.Window;
+
+public class TableWithFileSystemContainer extends TestBase {
+
+    private String testPath = "C:/temp/img";
+
+    @Override
+    public void setup() {
+        setMainWindow(new Window(""));
+        Table table = new Table("Documents", new FilesystemContainer(new File(
+                testPath)));
+        table.setWidth("100%");
+        getMainWindow().addComponent(table);
+    }
+
+    @Override
+    protected String getDescription() {
+        return "The Table uses a FileSystemContainer as datasource. Scrolling to the end should show the last items, not throw an NPE.";
+    }
+
+    @Override
+    protected Integer getTicketNumber() {
+        return 3864;
+    }
+
+}