INNER CODE UNIT · Java

onTestGroups

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

    public S onTestGroups(List<String> testGroups) {
        this.testGroups.addAll(testGroups);
        return self;
    }

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

    /**
     * Condition on system properties. The before test logic will only run when this condition matches.
     * @param systemProperties

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…