Skip to content

Commit

Permalink
Added documentation on how TCK test cases can be packaged in DMN files
Browse files Browse the repository at this point in the history
  • Loading branch information
sringuette committed Oct 12, 2023
1 parent 006b731 commit 73f9d5b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions utils/dmn-tck-packager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

This utility can package/extract DMN TCK Test Cases file in DMN XML file extended attributes.

The TCK test cases are packaged in the DMN model `definitions` level as an `extensionElements`.

```
<semantic:definitions xmlns:semantic="https://www.omg.org/spec/DMN/20211108/MODEL/" xmlns:tc="http://www.omg.org/spec/DMN/20160719/testcase">
<semantic:extensionElements>
<tc:testCases>
<tc:testCase id="tc-1" name="Test Case 1">
...
</tc:testCase>
<tc:testCase id="tc-2" name="Test Case 2">
...
</tc:testCase>
</tc:testCases>
</semantic>
```


## Building the Packager
Expand Down

0 comments on commit 73f9d5b

Please sign in to comment.