Class: AggregateMatchResult

AggregateMatchResult(algorithm, ok, wrongAnswer, runtimeError)

An aggregate result summarizing multiple match test results.

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

AggregateMatchResult

Members

(constant) algorithm :String

The matching algorithm that produced the match results.
Type:
  • String
Source:

(constant) ok :Number

The amount of test results with the 'OK' verdict.
Type:
  • Number
Source:

(constant) runtimeError :Number

The amount of test results with the 'RUNTIME ERROR' verdict.
Type:
  • Number
Source:

(constant) wrongAnswer :Number

The amount of test results with the 'WRONG ANSWER' verdict.
Type:
  • Number
Source:

Methods

(static) header() → {Array.<String>}

Source:
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.
Source:
Returns:
Type
AggregateMatchResult

values() → {Array.<String>}

Source:
Returns:
The row of values of this result for use in tables.
Type
Array.<String>