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

com.araguacaima.commons.utils.ByPassingTestingConstants Maven / Gradle / Ivy

Go to download

Common utilities is a set of java utilities for managing typical actions when working with enums, files, exceptions, zip/jar files, classes (via Reflection), maps, numbers and so on. Most of the utilities extend functionalities offered by amazing libraries such as: * commons-beanutils (apache) * commons-lang3 (apache) * commons-io (apache) * commons-math3 (apache) * commons-collections4 (apache) * jreversepro (akkumar)

There is a newer version: 1.5.17
Show newest version
package com.araguacaima.commons.utils;

public interface ByPassingTestingConstants {
    int BYPASSING_TESTING_CODE_MODE_BYPASSING = 0;//bypass
    int BYPASSING_TESTING_CODE_MODE_DEFAULT = BYPASSING_TESTING_CODE_MODE_BYPASSING;
    int BYPASSING_TESTING_CODE_MODE_DEPLOYMENT = 3;//deployment
    int BYPASSING_TESTING_CODE_MODE_DISABLED = 4;//bypassDisabled
    int BYPASSING_TESTING_CODE_MODE_FORCED = 5;//forceValue
    int BYPASSING_TESTING_CODE_MODE_PRODUCTION = 2;//production
    int BYPASSING_TESTING_CODE_MODE_TESTING = 1;//testing
    String BYPASSING_TESTING_CODE_PARAMETER_PREFIX = "bypassing.testing.code_";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy