Interface Parameters.LegacyEnvParameters

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.io.File[] getAbsoluteEnvFiles()
      Get the set of files which define the environment used to run the tests.
      java.io.File[] getEnvFiles()
      Get the set of files which define the environment used to run the tests.
      java.lang.String getEnvName()
      Get the name of the environment to be used, from the set of environments contained in the fles set by setEnvFiles.
      void setEnvFiles​(java.io.File... files)
      Set the files which contain the environment used to run the tests.
      void setEnvName​(java.lang.String name)
      Set the name of the environment to be used, from the set of environments contained in the fles set by setEnvFiles.
    • Method Detail

      • getEnvFiles

        java.io.File[] getEnvFiles()
        Get the set of files which define the environment used to run the tests. The files are returned as they were set by setEnvFiles.
        Returns:
        the set of files which define the exclude list
        See Also:
        getAbsoluteEnvFiles(), setEnvFiles(java.io.File...)
      • setEnvFiles

        void setEnvFiles​(java.io.File... files)
        Set the files which contain the environment used to run the tests. Relative files will be evaluated relative to the test suite root directory.
        Parameters:
        files - the set of files which contain the environment to be used
        See Also:
        getEnvFiles(), getAbsoluteEnvFiles()
      • getAbsoluteEnvFiles

        java.io.File[] getAbsoluteEnvFiles()
        Get the set of files which define the environment used to run the tests. The files are all returned as absolute files.
        Returns:
        the set of files which contact the exclude list
        See Also:
        getEnvFiles(), setEnvFiles(java.io.File...)
      • getEnvName

        java.lang.String getEnvName()
        Get the name of the environment to be used, from the set of environments contained in the fles set by setEnvFiles.
        Returns:
        the name of the environment to be used to run the tests
        See Also:
        setEnvName(java.lang.String)
      • setEnvName

        void setEnvName​(java.lang.String name)
        Set the name of the environment to be used, from the set of environments contained in the fles set by setEnvFiles.
        Parameters:
        name - the name of the environment to be used to run the tests
        See Also:
        getEnvName()