-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee17d9e
commit e2b03b4
Showing
2 changed files
with
350 additions
and
0 deletions.
There are no files selected for viewing
197 changes: 197 additions & 0 deletions
197
...nce-level-3/1143-feel-round-half-up-function/1143-feel-round-half-up-function-test-01.xml
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,197 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<!-- Contributed to DMN TCK by StrayAlien --> | ||
<testCases xmlns="http://www.omg.org/spec/DMN/20160719/testcase" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||
<modelName>1143-feel-round-half-up-function.dmn</modelName> | ||
<labels> | ||
<label>Compliance Level 3</label> | ||
<label>Data Type: Number</label> | ||
<label>FEEL Functions: number</label> | ||
</labels> | ||
|
||
<testCase id="001"> | ||
<description>Will round to integer</description> | ||
<resultNode name="decision001" type="decision"> | ||
<expected> | ||
<value xsi:type="xsd:decimal">6</value> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="002"> | ||
<description>Will round to negative to integer</description> | ||
<resultNode name="decision002" type="decision"> | ||
<expected> | ||
<value xsi:type="xsd:decimal">-6</value> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="003"> | ||
<description>Will round positive to scale</description> | ||
<resultNode name="decision003" type="decision"> | ||
<expected> | ||
<value xsi:type="xsd:decimal">1.12</value> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="004"> | ||
<description>Will round negative to scale</description> | ||
<resultNode name="decision004" type="decision"> | ||
<expected> | ||
<value xsi:type="xsd:decimal">-1.13</value> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="005"> | ||
<description>No params gives null</description> | ||
<resultNode errorResult="true" name="decision005" type="decision"> | ||
<expected> | ||
<value xsi:nil="true"/> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="006"> | ||
<description>Missing scale param gives null</description> | ||
<resultNode errorResult="true" name="decision006" type="decision"> | ||
<expected> | ||
<value xsi:nil="true"/> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="007"> | ||
<description>null number gives null</description> | ||
<resultNode errorResult="true" name="decision007" type="decision"> | ||
<expected> | ||
<value xsi:nil="true"/> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="008"> | ||
<description>null scale gives null</description> | ||
<resultNode errorResult="true" name="decision008" type="decision"> | ||
<expected> | ||
<value xsi:nil="true"/> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="009"> | ||
<description>Too many params gives null</description> | ||
<resultNode errorResult="true" name="decision009" type="decision"> | ||
<expected> | ||
<value xsi:nil="true"/> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="010"> | ||
<description>named params</description> | ||
<resultNode name="decision010" type="decision"> | ||
<expected> | ||
<value xsi:type="xsd:decimal">6</value> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="011_a"> | ||
<description>Missing 'n' named param gives null </description> | ||
<resultNode errorResult="true" name="decision011_a" type="decision"> | ||
<expected> | ||
<value xsi:nil="true"/> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="011_b"> | ||
<description>Missing 'scale' named param gives null </description> | ||
<resultNode errorResult="true" name="decision011_b" type="decision"> | ||
<expected> | ||
<value xsi:nil="true"/> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="012"> | ||
<description>Incorrect named param gives null</description> | ||
<resultNode errorResult="true" name="decision012" type="decision"> | ||
<expected> | ||
<value xsi:nil="true"/> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="013"> | ||
<description>Incorrect 'n' type gives null</description> | ||
<resultNode errorResult="true" name="decision013" type="decision"> | ||
<expected> | ||
<value xsi:nil="true"/> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="014"> | ||
<description>Incorrect 'scale' type gives null</description> | ||
<resultNode errorResult="true" name="decision014" type="decision"> | ||
<expected> | ||
<value xsi:nil="true"/> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="015"> | ||
<description>Non integer scale param gives null</description> | ||
<resultNode errorResult="true" name="decision015" type="decision"> | ||
<expected> | ||
<value xsi:nil="true"/> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<!-- | ||
what is expected for a negative scale? | ||
<testCase id="016_a"> | ||
<description>Min scale is −6111</description> | ||
<resultNode errorResult="true" name="decision016_a" type="decision"> | ||
<expected> | ||
<value xsi:type="xsd:decimal">5.5</value> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
--> | ||
|
||
<testCase id="016_b"> | ||
<description>less than min scale gives null</description> | ||
<resultNode errorResult="true" name="decision016_b" type="decision"> | ||
<expected> | ||
<value xsi:nil="true"/> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="017_a"> | ||
<description>Max scale is 6176</description> | ||
<resultNode name="decision017_a" type="decision"> | ||
<expected> | ||
<value xsi:type="xsd:decimal">5.5</value> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
<testCase id="017_b"> | ||
<description>Greater than max scale gives null</description> | ||
<resultNode errorResult="true" name="decision017_b" type="decision"> | ||
<expected> | ||
<value xsi:nil="true"/> | ||
</expected> | ||
</resultNode> | ||
</testCase> | ||
|
||
</testCases> |
153 changes: 153 additions & 0 deletions
153
.../compliance-level-3/1143-feel-round-half-up-function/1143-feel-round-half-up-function.dmn
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,153 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<definitions namespace="http://www.montera.com.au/spec/DMN/1143-feel-round-half-up-function" | ||
name="1143-feel-round-half-up-function" | ||
id="_i9fboPUUEeesLuP4RHs4vA" | ||
xmlns="https://www.omg.org/spec/DMN/20211108/MODEL/" | ||
xmlns:di="http://www.omg.org/spec/DMN/20180521/DI/" | ||
xmlns:dmndi="https://www.omg.org/spec/DMN/20191111/DMNDI/" | ||
xmlns:dc="http://www.omg.org/spec/DMN/20180521/DC/" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<description>FEEL built-in function 'round half up(n,scale)' in category number functions</description> | ||
|
||
<decision name="decision001" id="_decision001"> | ||
<variable name="decision001"/> | ||
<literalExpression> | ||
<text>round half up(5.5, 0)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision002" id="_decision002"> | ||
<variable name="decision002"/> | ||
<literalExpression> | ||
<text>round half up(-5.5, 0)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision003" id="_decision003"> | ||
<variable name="decision003"/> | ||
<literalExpression> | ||
<text>round half up(1.121, 2)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision004" id="_decision004"> | ||
<variable name="decision004"/> | ||
<literalExpression> | ||
<text>round half up(-1.126, 2)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision005" id="_decision005"> | ||
<variable name="decision005"/> | ||
<literalExpression> | ||
<text>round half up()</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision006" id="_decision006"> | ||
<variable name="decision006"/> | ||
<literalExpression> | ||
<text>round half up(1234)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision007" id="_decision007"> | ||
<variable name="decision007"/> | ||
<literalExpression> | ||
<text>round half up(null,0)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision008" id="_decision008"> | ||
<variable name="decision008"/> | ||
<literalExpression> | ||
<text>round half up(1234,null)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision009" id="_decision009"> | ||
<variable name="decision009"/> | ||
<literalExpression> | ||
<text>round half up(1234.12,1,2)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision010" id="_decision010"> | ||
<variable name="decision010"/> | ||
<literalExpression> | ||
<text>round half up(n:5.5,scale:0)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision011_a" id="_decision011_a"> | ||
<variable name="decision011_a"/> | ||
<literalExpression> | ||
<text>round half up(scale:0)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision011_b" id="_decision011_b"> | ||
<variable name="decision011_b"/> | ||
<literalExpression> | ||
<text>round half up(n:5.5)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision012" id="_decision012"> | ||
<variable name="decision012"/> | ||
<literalExpression> | ||
<text>round half up(n:5.5,scale:0,foo:123)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision013" id="_decision013"> | ||
<variable name="decision013"/> | ||
<literalExpression> | ||
<text>round half up("123", 0)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision014" id="_decision014"> | ||
<variable name="decision014"/> | ||
<literalExpression> | ||
<text>round half up(5.5, "0")</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision015" id="_decision015"> | ||
<variable name="decision015"/> | ||
<literalExpression> | ||
<text>round half up(5.5, 1.1)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision016_a" id="_decision016_a"> | ||
<variable name="decision016_a"/> | ||
<literalExpression> | ||
<text>round half up(5.5, -6111)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision016_b" id="_decision016_b"> | ||
<variable name="decision016_b"/> | ||
<literalExpression> | ||
<text>round half up(5.5, (-6111 - 1))</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision017_a" id="_decision017_a"> | ||
<variable name="decision017_a"/> | ||
<literalExpression> | ||
<text>round half up(5.5, 6176)</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
<decision name="decision017_b" id="_decision017_b"> | ||
<variable name="decision017_b"/> | ||
<literalExpression> | ||
<text>round half up(5.5, (6176 + 1))</text> | ||
</literalExpression> | ||
</decision> | ||
|
||
</definitions> | ||
|