Class: MatchTestCase

MatchTestCase(name, oldTree, newTree, expected)

Represents a test case for the evaluation of matching algorithms with manually defined process trees.

Constructor

new MatchTestCase(name, oldTree, newTree, expected)

Construct a new MatchTestCase 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 ExpectedMatching Rules for the expected matching
Source:

Classes

MatchTestCase

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) → {MatchTestCase}

Construct a match 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 match test case
Type
MatchTestCase

complete(algorithm, actualnullable, verdict) → {MatchTestResult}

Complete this test case.
Parameters:
Name Type Attributes Default Description
algorithm String The algorithm that ran this case
actual ActualMatching <nullable>
null The matching produced by the algorithm, null indicates failure
verdict String The verdict for this test case and algorithm
Source:
Returns:
The corresponding result
Type
MatchTestResult