Class: DiffTestCase

DiffTestCase(name, oldTree, newTree, expected)

Represents a test case for the evaluation of diff algorithms.

Constructor

new DiffTestCase(name, oldTree, newTree, expected)

Construct a new DiffTestCase instance.
Parameters:
Name Type Description
name String The name of this test case.
oldTree Node The root of the original process tree.
newTree Node The root of the changed process tree.
expected ExpectedDiff The expected result.
Source:

Classes

DiffTestCase

Members

(constant) newTree :Node

The root of the changed (new) process tree.
Type:
Source:

(constant) oldTree :Node

The root of the original (old) process tree.
Type:
Source:

Methods

(static) from(testCaseDir) → {DiffTestCase}

Construct a diff test case from a test case directory.
Parameters:
Name Type Description
testCaseDir String An absolute or relative path to the test case directory
Source:
Returns:
The constructed diff test case
Type
DiffTestCase

complete(algorithm, runtime, actualnullable, verdict) → {DiffTestResult}

Complete this test case.
Parameters:
Name Type Attributes Default Description
algorithm String The algorithm that ran this case.
runtime Number The time (in ms) the algorithm took to complete the case.
actual ActualDiff <nullable>
null The diff produced by the algorithm, null indicates failure.
verdict String The verdict for this test case and algorithm.
Source:
Returns:
The corresponding result.
Type
DiffTestResult