Class: MatchAdapter

MatchAdapter(path, displayName)

The superclass for all adapters to matching algorithms.

Constructor

new MatchAdapter(path, displayName)

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

Classes

MatchAdapter

Methods

evalCase(testCase) → {MatchTestResult}

Parameters:
Name Type Description
testCase MatchTestCase The diff test case to run.
Source:
Returns:
The result.
Type
MatchTestResult

(abstract) run(oldTree, newTree) → {Matching}

Run this matching algorithm.
Parameters:
Name Type Description
oldTree Node The root of the old (original) tree.
newTree Node The root of the new (changed) tree.
Source:
Returns:
The produced matching.
Type
Matching

verifyResult(matching, expected)

Verify that an actual matching follows the rules of the expected matching.
Parameters:
Name Type Description
matching Matching The actual matching produced by the algorithm.
expected ExpectedMatching Rules for the expected matching.
Source:
Throws:
If the actual matching does not conform to the rules of the expected.
Type
Error