Enum Baseline
- Alle implementierten Schnittstellen:
Serializable
,Comparable<Baseline>
The baseline for the code coverage computation.
-
Enum-Konstanten - Übersicht
Enum-KonstanteBeschreibungIndirect changes of the overall code coverage that are not part of the changed code.Coverage of the modified files (e.g., within the files that have been touched in a pull or merge request) will focus on new or modified code only.Difference between the project coverage and the modified file coverage of the current build.Coverage of the modified lines (e.g., within the modified lines of a pull or merge request) will focus on new or modified code only.Difference between the project coverage and the modified lines coverage of the current build.Coverage of the whole project.Difference between the project coverages of the current build and the reference build. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibunggetDisplayColors
(double value, ColorProvider colorProvider) Returns the display colors to use render a value of this baseline.getTitle()
getUrl()
static Baseline
Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück.static Baseline[]
values()
Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.
-
Enum-Konstanten - Details
-
PROJECT
Coverage of the whole project. This is an absolute value that might not change much from build to build. -
PROJECT_DELTA
Difference between the project coverages of the current build and the reference build. Teams can use this delta value to ensure that the coverage will not decrease. -
MODIFIED_LINES
Coverage of the modified lines (e.g., within the modified lines of a pull or merge request) will focus on new or modified code only. -
MODIFIED_LINES_DELTA
Difference between the project coverage and the modified lines coverage of the current build. Teams can use this delta value to ensure that the coverage of pull requests is better than the whole project coverage. -
MODIFIED_FILES
Coverage of the modified files (e.g., within the files that have been touched in a pull or merge request) will focus on new or modified code only. -
MODIFIED_FILES_DELTA
Difference between the project coverage and the modified file coverage of the current build. Teams can use this delta value to ensure that the coverage of pull requests is better than the whole project coverage. -
INDIRECT
Indirect changes of the overall code coverage that are not part of the changed code. These changes might occur, if new tests will be added without touching the underlying code under test.
-
-
Methodendetails
-
values
Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.- Gibt zurück:
- ein Array mit den Konstanten dieses Enumerationstyps in der Reihenfolge ihrer Deklaration
-
valueOf
Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enumerationskonstante in diesem Typ deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)- Parameter:
name
- Name der zurückzugebenden Enumerationskonstante.- Gibt zurück:
- Enumerationskonstante mit dem angegebenen Namen
- Löst aus:
IllegalArgumentException
- wenn dieser Enumerationstyp keine Konstante mit dem angegebenen Namen enthältNullPointerException
- wenn das Argument nicht angegeben wird
-
getTitle
-
getUrl
-
getDisplayColors
Returns the display colors to use render a value of this baseline.- Parameter:
value
- the value to rendercolorProvider
- the color provider to use- Gibt zurück:
- the display colors to use
-