INNER CODE UNIT · Java

whenSystemProperties

citrusframework/citrus · core/citrus-api/src/main/java/org/citrusframework/AbstractSuiteContainerBuilder.java:85

    public S whenSystemProperties(Map<String, String> systemProperties) {
        this.systemProperties.putAll(systemProperties);
        return self;
    }

    /**
     * Condition on environment variable with value. The before test logic will only run when this condition matches.
     * @param name
     * @param value
     */
    public S whenEnv(String name, String value) {
        this.env.put(name, value);
        return self;
    }

    /**
     * Condition on environment variables. The before test logic will only run when this condition matches.
     * @param envs

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…