JLabel three = new JLabel("Three");
JLabel four = new JLabel("Three");
h = new HidableTabbedPane("Tab One", one);
h.addTab("Tab Two", two);
h.addTab("Tab Three", three);
h.addTab("Tab Four", four);
assertEquals(h.getTabCount(), 4);
assertEquals(h.getComponentAt(0), one);
assertEquals(h.getComponentAt(1), two);
assertEquals(h.getComponentAt(2), three);
assertEquals(h.getComponentAt(3), four);