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:
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    runIt(Object param)
    Defines a way to execute this test scenario.
  • Method Details

    • 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 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.