Class KeywordScript

java.lang.Object
com.sun.javatest.Script
com.sun.javatest.lib.KeywordScript

public class KeywordScript extends Script
Default script, which delegates to one of a number of scripts defined in environment entries, according to the keywords on the test description.
  • Constructor Details

    • KeywordScript

      public KeywordScript()
  • Method Details

    • run

      public void run()
      Run the script, using the parameters set up by the standard initialization methods.
      Overrides:
      run in class Script
    • run

      public Status run(String[] args, TestDescription td, TestEnvironment env)
      Description copied from class: Script
      The primary method to be provided by Scripts. It is responsible for compiling and executing the test appropriately. Normally, a script should call `init' and then decode any script-specific options it is given in `args'. It should then examine the test description it is given so that it can compile and execute the test as appropriate. Various convenience routines are provided to simplify the task of running the compiler, an interpreter or any other commands, which can be specified in a flexible manner by properties in the TestEnvironment.
      Specified by:
      run in class Script
      Parameters:
      args - Any script-specific options specified in the script property
      td - The test description for the test to be performed
      env - The test environment giving the details of how to run the test
      Returns:
      The result of running the script
      See Also: