We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2971c01 commit 816cf17Copy full SHA for 816cf17
src/test/java/com/flowingcode/vaadin/addons/gridhelpers/test/FooterToolbarTest.java
@@ -30,14 +30,6 @@ public class FooterToolbarTest {
30
31
private static class Bean {}
32
33
- @Test
34
- public void addToolbarFooter() {
35
- Grid<Bean> grid = new Grid<>(Bean.class, false);
36
- grid.addColumn(x -> x).setHeader("Header");
37
- var toolbarFooter = new HorizontalLayout();
38
- GridHelper.addToolbarFooter(grid, toolbarFooter);
39
- }
40
-
41
@Test(expected = IllegalStateException.class)
42
public void testSetFooterToolbarBeforeColumnsConfiguredThrowsException() {
43
Grid<Bean> grid = new Grid<>(Bean.class, false);
0 commit comments