Package junit.extensions.awt.tester

Provide component-specific actions and tests.

See:
          Description

Class Summary
AbstractButtonTester  
ComponentTester Provide basic actions and assertions for anything of class Component.
ContainerTester  
DialogTester  
FrameTester  
JComboBoxTester  
JComponentTester  
JLabelTester  
JListTester  
JMenuItemTester  
JPopupMenuTester  
JTableTester  
JTextComponentTester  
WindowTester  
 

Package junit.extensions.awt.tester Description

Provide component-specific actions and tests. Each unique class of GUI component can have its own Tester class derived from ComponentTester. This class provides any number of action methods which can exercise the various user semantic actions that the GUI component supports. For example, AbstractButtonTester provides the actionClick method to perform a button click. The Tester may also provide bean-like is/get methods to facilitate access to component properties that might not otherwise be readily available as a property. For example, JPopupMenuTester has a getMenuLabels method which returns the text of the menu items within it as an array of String.