We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d73abc commit 82adfc8Copy full SHA for 82adfc8
src/test/java/com/flowingcode/vaadin/addons/gridhelpers/test/FooterToolbarTest.java
@@ -28,14 +28,6 @@ public class FooterToolbarTest {
28
29
private static class Bean {}
30
31
- @Test
32
- public void addToolbarFooter() {
33
- Grid<Bean> grid = new Grid<>(Bean.class, false);
34
- grid.addColumn(x -> x).setHeader("Header");
35
- var toolbarFooter = new HorizontalLayout();
36
- GridHelper.addToolbarFooter(grid, toolbarFooter);
37
- }
38
-
39
@Test(expected = IllegalStateException.class)
40
public void testSetFooterToolbarBeforeColumnsConfiguredThrowsException() {
41
Grid<Bean> grid = new Grid<>(Bean.class, false);
0 commit comments