Class: GenMatchTestCase

GenMatchTestCase(name, oldTree, newTree, expected)

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

Constructor

new GenMatchTestCase(name, oldTree, newTree, expected)

Construct a new GenMatchTestCase 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 ExpectedGenMatching The Expected matching
Source:

Classes

GenMatchTestCase

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

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

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
GenMatchTestResult