From: Artur Signell Date: Tue, 15 Dec 2009 14:58:39 +0000 (+0000) Subject: Test case for #3864 X-Git-Tag: 6.7.0.beta1~2144 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2aac4f3d269bb7f7b2ffa93d193772d2ab1d9cb2;p=vaadin-framework.git Test case for #3864 svn changeset:10323/svn branch:6.2 --- diff --git a/tests/src/com/vaadin/tests/containers/TableWithFileSystemContainer.java b/tests/src/com/vaadin/tests/containers/TableWithFileSystemContainer.java new file mode 100644 index 0000000000..20567e70af --- /dev/null +++ b/tests/src/com/vaadin/tests/containers/TableWithFileSystemContainer.java @@ -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; + } + +}