Questions tagged [fest]

FEST (Fixtures for Easy Software Testing) is a collection of APIs to facilitate Java software testing. FEST contains a fluent API for reflection, assertion and interacting with SWING GUI Components. It can be used within JUnit and TestNG.

See the FEST home page.

91 questions
-2
votes
1 answer

How to get the right component name and then use it in FEST testing

I am using setname to define buttons in my Swing applcation. I want to use the names in my FEST code. This is the source code: for (int i = 0; i < trimSizeButtons.length; ++i) { trimSizeButtons[i].setActionCommand( …
1 2 3 4 5 6
7