hudson.plugins.analysis.test.AbstractEnglishLocaleTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of analysis-test Show documentation
Show all versions of analysis-test Show documentation
This plug-in provides test utilities for the static code analysis plug-ins.
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