Skip to content
Snippets Groups Projects

Verifier

Overview

DRD Modeling Level Verification

Lonely Data Input Verification

Description

Checks for any input data node, if it has no connection to at least one decision table.

Algorithm

doVerification (Definition d) {
    define rL as ResultList
    for each (InputNode i in d.getInputNodes()) {
        if (i.hasNoConnectedDecisionNodes()) {
            add i to rL
        }
    }
    return rL
}

Modeling Level Verification

Predefined Existing Value Verification

Description

TODO

Algorithm

TODO

Predefined Missing Value Verification

Description

TODO

Algorithm

TODO

Decision Logic Level Verification

TODO...

SyntaxLevelVerification

TODO...