Interface ConfigurationParameters

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static String CONFIG_FILE_NAME
      Name of the JUnit Platform configuration file: "junit-platform.properties".
    • Field Detail

      • CONFIG_FILE_NAME

        static final String CONFIG_FILE_NAME
        Name of the JUnit Platform configuration file: "junit-platform.properties".

        If a properties file with this name is present in the root of the classpath, it will be used as a source for configuration parameters. If multiple files are present, only the first one detected in the classpath will be used.

        See Also:
        Properties, Constant Field Values
    • Method Detail

      • get

        Optional<String> get​(String key)
        Get the configuration parameter stored under the specified key.

        If no such key is present in this ConfigurationParameters, an attempt will be made to look up the value as a JVM system property. If no such system property exists, an attempt will be made to look up the value in the JUnit Platform properties file.

        Parameters:
        key - the key to look up; never null or blank
        Returns:
        an Optional containing the value; never null but potentially empty
        See Also:
        getBoolean(String), System.getProperty(String), CONFIG_FILE_NAME
      • size

        int size()
        Get the number of configuration parameters stored directly in this ConfigurationParameters.