Class: AbstractAdapter

(abstract) AbstractAdapter(path, displayName)

Abstract superclass for all adapters to some form of algorithm (match, diff, merge).

Constructor

(abstract) new AbstractAdapter(path, displayName)

Construct a new AbstractAdapter instance.
Parameters:
Name Type Description
path String The path to the directory containing the algorithm and the run script
displayName String The name to display for the algorithm this adapter represents.
Source:

Classes

AbstractAdapter

Members

(constant) displayName :String

The name to display for the algorithm this adapter represents.
Type:
  • String
Source:

(constant) path :String

The path to the directory containing the algorithm and the run script.
Type:
  • String
Source:

Methods

(abstract) evalCase(testCase) → {AbstractTestResult}

Evaluate a single test case with the algorithm this adapter represents.
Parameters:
Name Type Description
testCase AbstractTestCase The test case to run.
Source:
Returns:
The result.
Type
AbstractTestResult