Class VariableDeclaration

  • All Implemented Interfaces:
    ScriptMutator

    public class VariableDeclaration
    extends Object
    implements ScriptMutator
    Prepend a variable declaration to a script.
    • Constructor Detail

      • VariableDeclaration

        public VariableDeclaration​(String varName,
                                   String value)
        Parameters:
        varName - variable name.
        value - value.
    • Method Detail

      • mutate

        public void mutate​(Context context,
                           String script,
                           StringBuilder outputTo)
        Description copied from interface: ScriptMutator
        Mutate a script. The original, unmodified script is used to generate a script on the StringBuilder, the "toString" method of which should be used to get the result. We make use of a StringBuilder rather than a normal String so that we can efficiently chain mutators.
        Specified by:
        mutate in interface ScriptMutator
        Parameters:
        context - SeleneseRunner context.
        script - The original script.
        outputTo - The mutated script.