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

org.testng.internal.RuntimeBehavior Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng.internal;

/**
 * This class houses handling all JVM arguments by TestNG
 */
public final class RuntimeBehavior {

    private RuntimeBehavior() {
    }

    /**
     * @return - returns true if we would like to run in the Dry mode and
     * false otherwise.
     */
    public static boolean isDryRun() {
        String value = System.getProperty("testng.mode.dryrun", "false");
        return Boolean.parseBoolean(value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy