/** * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * * Copyright 2012-2015 the original author or authors. */ package org.assertj.swing.fixture; import static org.assertj.core.util.Arrays.array; import static org.assertj.swing.data.TableCell.row; import static org.assertj.swing.edt.GuiActionRunner.execute; import javax.swing.JScrollPane; import javax.swing.JTable; import org.assertj.swing.test.core.RobotBasedTestCase; import org.assertj.swing.test.swing.TestWindow; import org.junit.Test; /** * Test case for bug <a href="http://jira.codehaus.org/browse/FEST-299" target="_blank">FEST-299</a>. * * @author Rahel Luethy * @author Alex Ruiz */ public class FEST299_ColumnHeaderSort_Test extends RobotBasedTestCase { private FrameFixture frame; @Override protected void onSetUp() { frame = new FrameFixture(robot, MyWindow.createNew()); frame.show(); } @Test public void should_Sort_Table_When_Clicking_Header_Several_Times() { JTableFixture table = frame.table(); JTableHeaderFixture header = table.tableHeader(); header.clickColumn(0); // sort-up header.clickColumn(0); // sort-down table.requireCellValue(row(0).column(0), "c"); } private static class MyWindow extends TestWindow { private static final long serialVersionUID = 1L; static MyWindow createNew() { return execute(() -> new MyWindow()); } private MyWindow() { super(FEST299_ColumnHeaderSort_Test.class); add(new JScrollPane(table())); setSize(200, 200); } private static JTable table() { String[][] data = { { "a" }, { "c" }, { "b" } }; JTable table = new JTable(data, array("column")); table.setAutoCreateRowSorter(true); return table; } } }