Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

abbot.tester.extensions.* (2)

abbot.tester: Javadoc index of package abbot.tester.


Package Samples:

abbot.tester.extensions: Miscellaneous examples demonstrating Abbot usage.  

Classes:

ComponentTester: Provide basic actions and assertions for anything of class Component. Derive from this class to implement actions and assertions specific to a given component class. Actions are generally user-driven actions such as menu selection, table selection, popup menus, etc. Assertions are either independent of any component (and should be implemented in this class), or take a component as the first argument, and perform some check on that component. Testers for any classes found in the JRE should be in the abbot.tester package. Extensions (testers for any Component subclasses not found in the JRE) must ...
Robot: Provide a higher level of abstraction for user input (A Better Robot). The Robot's operation may be affected by the following properties: abbot.robot.auto_delay Set this to a value representing the millisecond count in between generated events. Usually just set to 100-200 if you want to slow down the playback to simulate actual user input. The default is zero delay. NOTE: Only use invokeAndWait when a subsequent robot-level action is being applied to the results of a prior action (e.g. focus, deiconify, menu selection). Otherwise, don't introduce a mandatory delay. NOTE: If a robot action isn't ...
ArgumentParser: Provide parsing of a String into an array of appropriately typed arguments. Arrays are indicated by square brackets, and arguments are separated by commas, e.g. An empty String array (length zero): "[]" Three arguments "one,two,three" An array of three arguments, with embedded comma: "[one\,one,two,three]" An argument with square brackets: "\[one\]" A single null argument: "null"
TesterTestSuite: Test suite of all available tests for ComponentTester classes. Note that the tester tests are set up to run multiple times when run standalone (the main method is invoked). This makes it easy to stress-test the tester to expose timing-related issues, while not overburdening the main suite() method used here.
KeyStrokeMap: Map characters to the keycodes (and modifiers) required to generate them. FIXME OSX generates key_typed events for control and alt characters; other platforms might as well, so there needs to be a keystroke map entry for those characters.
ImageComparator: This code expects the availability of the com.sun.image.codec.jpeg extensions from the Sun JDK 1.3 or JRE. Original comparison code contributed by asmithmb. author: asmithmontebello@aol.com, twall
JListTester: Provide actions and assertions for a JList component. Select an item by index Select an item by value (its string representation)
RobotTest: Unit test to verify Robot operation. Also add tests here for all known robot bugs (jitter, frame motion, etc.).
AbstractButtonTesterTest: Unit test to verify the AbstractButtonTester class. Test all exported actions.
ComponentTesterTest: Unit test to verify the base ComponentTester class. Test all exported actions.
JComboBoxTesterTest: Unit test to verify the base ComponentTester class. Test all exported actions.
ComponentNotShowingException: Indicates that a ComponentTester action failed due to the component not being visible on screen.
FileComparator: Compare two files or filenames. Original concept contributed by A. Smith Montebello.
ComponentMissingException: Indicates that a component required by a ComponentTester action was not found.
ActionFailedException: Indicates that a ComponentTester action failed to execute properly.
ArrowButtonTester: Provide user actions and identifiers for the ArrowButton component.
JComponentTesterTest: Unit test to verify the base ComponentTester class.
JTextComponentTesterTest: Unit test to verify the JTextComponentTester class.
JTabbedPaneTesterTest: Unit test to verify the JTabbedPaneTester class.
KeyStrokeMapTest: Unit test to verify basic key stroke mappings.
JTableTesterTest: Unit test to verify the JTableTester class.
FrameTesterTest: Unit test to verify the FrameTester class.
JListTesterTest: Unit test to verify the JListTester class.
JTreeTesterTest: Unit test to verify the JTreeTester class.
Comparator: Utility class to perform comparisons.

Home | Contact Us | Privacy Policy | Terms of Service