mockit.coverage.Configuration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmockit-coverage Show documentation
Show all versions of jmockit-coverage Show documentation
JMockit Coverage is a code coverage tool with several metrics (line, path, data) capable of generating HTML
reports. It is designed with ease of use in mind, avoiding the need for complex configuration.
Instead, smart (but overridable) defaults are employed, such as the selection of which classes to consider for
coverage, and where to find sources files for report generation.
/*
* Copyright (c) 2006-2013 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.coverage;
import org.jetbrains.annotations.*;
public final class Configuration
{
private static final String COVERAGE_PREFIX1 = "jmockit-coverage-";
private static final String COVERAGE_PREFIX2 = "coverage-";
@Nullable public static String getProperty(@NotNull String nameSuffix)
{
return getProperty(nameSuffix, null);
}
@Contract("_, !null -> !null")
public static String getProperty(@NotNull String nameSuffix, @Nullable String defaultValue)
{
String property = System.getProperty(COVERAGE_PREFIX1 + nameSuffix);
if (property != null) {
return property;
}
return System.getProperty(COVERAGE_PREFIX2 + nameSuffix, defaultValue);
}
public static void setProperty(@NotNull String name, @NotNull String value)
{
String prefixToUse = COVERAGE_PREFIX1;
if (System.getProperty(prefixToUse + name) == null) {
prefixToUse = COVERAGE_PREFIX2;
}
System.setProperty(prefixToUse + name, value);
}
}