You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here are the four additional steps I had to perform when upgrading from org.easytesting:fest-swing:1.2 to org.assertj:assertj-swing-junit:3.17.1:
org.fest.swing.driver.JTableCellValidator.validateCellIndices was renamed to org.assertj.swing.driver.JTableCellPreconditions.checkCellIndicesInBounds
org.fest.swing.query.ComponentBackgroundQuery.backgroundOf(component) had to be replaced with org.assertj.swing.edt.GuiActionRunner.execute(() -> component.getBackground())
org.fest.swing.query.ComponentFontQuery.fontOf(component) had to be replaced with org.assertj.swing.edt.GuiActionRunner.execute(() -> component.getFont())
org.fest.swing.query.ComponentForegroundQuery.foregroundOf(component) had to be replaced with org.assertj.swing.edt.GuiActionRunner.execute(() -> component.getForeground())
The text was updated successfully, but these errors were encountered:
In response to
Here are the four additional steps I had to perform when upgrading from
org.easytesting:fest-swing:1.2
toorg.assertj:assertj-swing-junit:3.17.1
:org.fest.swing.driver.JTableCellValidator.validateCellIndices
was renamed toorg.assertj.swing.driver.JTableCellPreconditions.checkCellIndicesInBounds
org.fest.swing.query.ComponentBackgroundQuery.backgroundOf(component)
had to be replaced withorg.assertj.swing.edt.GuiActionRunner.execute(() -> component.getBackground())
org.fest.swing.query.ComponentFontQuery.fontOf(component)
had to be replaced withorg.assertj.swing.edt.GuiActionRunner.execute(() -> component.getFont())
org.fest.swing.query.ComponentForegroundQuery.foregroundOf(component)
had to be replaced withorg.assertj.swing.edt.GuiActionRunner.execute(() -> component.getForeground())
The text was updated successfully, but these errors were encountered: