Constructor
new AggregateMatchResult(algorithm, ok, wrongAnswer, runtimeError)
Construct a new AggregateMatchResult instance.
Parameters:
Name | Type | Description |
---|---|---|
algorithm |
String | The matching algorithm that produced the match results. |
ok |
Number | The amount of test results with the 'OK' verdict. |
wrongAnswer |
Number | The amount of test results with the 'WRONG ANSWER' verdict. |
runtimeError |
Number | The amount of test results with the 'RUNTIME ERROR' verdict. |
- Source:
- See:
Classes
Members
(constant) algorithm :String
The matching algorithm that produced the match results.
Type:
- String
(constant) ok :Number
The amount of test results with the 'OK' verdict.
Type:
- Number
(constant) runtimeError :Number
The amount of test results with the 'RUNTIME ERROR' verdict.
Type:
- Number
(constant) wrongAnswer :Number
The amount of test results with the 'WRONG ANSWER' verdict.
Type:
- Number
Methods
(static) header() → {Array.<String>}
Returns:
The header row for a list of aggregate match
results to use in tables.
- Type
- Array.<String>
(static) of(results) → {AggregateMatchResult}
Create an AggregateMatchResult instance from a list of individual match
test results.
Parameters:
Name | Type | Description |
---|---|---|
results |
Array.<MatchTestResult> | The list of match test results. |
Returns:
- Type
- AggregateMatchResult
values() → {Array.<String>}
Returns:
The row of values of this result for use in tables.
- Type
- Array.<String>