org.netbeans.jemmy
Interface Scenario
- All Known Implementing Classes:
- Test
public interface Scenario
A test scenario. This interface provides a mechanism for
putting something into execution. The execution is conditioned
in a very general way by passing a java.lang.Object
to it's runIt
method.
- Author:
- Alexandre Iline (alexandre.iline@sun.com)
- See Also:
Test
Method Summary |
int |
runIt(java.lang.Object param)
Defines a way to execute this test scenario. |
runIt
int runIt(java.lang.Object param)
- Defines a way to execute this test scenario.
- Parameters:
param
- An object passed to configure the test scenario
execution. For example, this parameter might be a
java.lang.String[] object that lists the
command line arguments to the Java application corresponding
to a test.
- Returns:
- an int that tells something about the execution.
For, example, a status code.