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. |
Classes
Methods
evalCase(testCase) → {MatchTestResult}
Parameters:
Name | Type | Description |
---|---|---|
testCase |
MatchTestCase | The diff test case to run. |
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. |
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. |
Throws:
-
If the actual matching does not conform to the rules of the expected.
- Type
- Error