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

hudson.plugins.analysis.test.AbstractEnglishLocaleTest Maven / Gradle / Ivy

The newest version!
package hudson.plugins.analysis.test;

import java.util.Locale;

import org.junit.Before;

/**
 * A test with predefined English locale.
 */
public abstract class AbstractEnglishLocaleTest { // NOPMD
    /**
     * Initializes the locale to English.
     */
    @Before
    public void initializeLocale() {
        Locale.setDefault(Locale.ENGLISH);
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy