All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.cucumber.junit.JUnitOptions Maven / Gradle / Ivy

There is a newer version: 7.20.1
Show newest version
package io.cucumber.junit;

final class JUnitOptions {

    private boolean filenameCompatibleNames = false;
    private boolean stepNotifications = false;

    boolean filenameCompatibleNames() {
        return filenameCompatibleNames;
    }

    boolean stepNotifications() {
        return stepNotifications;
    }

    void setFilenameCompatibleNames(boolean filenameCompatibleNames) {
        this.filenameCompatibleNames = filenameCompatibleNames;
    }

    void setStepNotifications(boolean stepNotifications) {
        this.stepNotifications = stepNotifications;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy