Class BaseResult
Base class for results: AxePageResult, AxeOverallResult
Namespace: AxaFrance.AxeExtended.HtmlReport
Assembly: AxaFrance.AxeExtended.HtmlReport.dll
Syntax
public abstract class BaseResult
Properties
| Edit this page View SourceScore
The score of the test result.
Declaration
public int? Score { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
ScoreBackgroundColor
The color code for the score background color.
Declaration
public string ScoreBackgroundColor { get; }
Property Value
| Type | Description |
|---|---|
| string |
ScoreForegroundColor
The color code for the score foreground color. We want to have a green color for high score and red for low score.
Declaration
public string ScoreForegroundColor { get; }
Property Value
| Type | Description |
|---|---|
| string |
ScoreRotation
The rotation in degree used to display the score in html report
Declaration
public int? ScoreRotation { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Scorebase
The sum of score base, that is the sum of all applicable rules.
Declaration
public int Scorebase { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Methods
| Edit this page View SourceGetScore()
Gets the score from test result.
Declaration
protected abstract int GetScore()
Returns
| Type | Description |
|---|---|
| int | 0 to 100 |