Package 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 ajava.lang.Object
to it'srunIt
method.- Author:
- Alexandre Iline (alexandre.iline@sun.com)
- See Also:
Test
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
runIt(Object param)
Defines a way to execute this test scenario.
-
-
-
Method Detail
-
runIt
int runIt(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 ajava.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.
-
-