-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[incubator-kie-issues#1023] Add Readme from PR suggestion
- Loading branch information
Gabriele-Cardosi
committed
Mar 21, 2024
1 parent
44656ec
commit 9f97685
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
DMN Test Resources | ||
================== | ||
|
||
This module is meant to be the ultimate single-source-of truth about DMN models used for testing purposes. | ||
|
||
The models are stored under `src/test/resources`, so the module has to be imported has | ||
|
||
```xml | ||
<dependency> | ||
<groupId>org.kie</groupId> | ||
<artifactId>kie-dmn-test-resources</artifactId> | ||
<classifier>tests</classifier> | ||
<scope>test</scope> | ||
</dependency> | ||
``` | ||
|
||
to have them available. | ||
|
||
Models are split in two categories: _valid_models_ and __invalid_models_. | ||
The former are valid models, expected to succeed the DMN validation. | ||
The latter are invalid ones, expected to have some errors, and used to check that such errors are detected by validation. | ||
|
||
For both categories, there is a subdivision: _DMNv1_x_ and _DMNV1_5_. | ||
The former are all the models created before the 1.5 implementation, that are hard to sort based on the version relates to. | ||
The latter contains models with 1.5. specific feature. | ||
In the future, for each new DMN release there will be a specific folder. |