core/test/core/insurance: Add missing descriptions

This was broken by a previous commit, but was not noticed because
the test cases aren't being compiled as part of the build yet!

Now that we have tamed, that is an option.

* test/core/insurance.xml: Add missing @desc@.
master
Mike Gerwitz 2018-10-29 11:54:39 -04:00
parent 21ffeb5841
commit 1fb87106b0
1 changed files with 18 additions and 9 deletions

View File

@ -37,7 +37,8 @@
<t:it desc="Performs no round when 'none'">
<t:premium class="length1"
generates="premRoundNone" index="k"
round="none">
round="none"
desc="Non-rounded premium">
<c:value-of name="#0.5" />
</t:premium>
@ -56,7 +57,8 @@
<t:it desc="Rounds to nearest integer when 'dollar' (up)">
<t:premium class="length1"
generates="premRoundDollarUp" index="k"
round="dollar">
round="dollar"
desc="Rounded-up premium">
<c:value-of name="#1.5" />
</t:premium>
@ -75,7 +77,8 @@
<t:it desc="Rounds to nearest integer when 'dollar' (down)">
<t:premium class="length1"
generates="premRoundDollarDown" index="k"
round="dollar">
round="dollar"
desc="Rounded-down premium">
<c:value-of name="#1.4" />
</t:premium>
@ -94,7 +97,8 @@
<t:it desc="Rounds to nearest cent when 'cent' (up)">
<t:premium class="length1"
generates="premRoundCentUp" index="k"
round="cent">
round="cent"
desc="Rounded-up premium to nearest cent">
<c:value-of name="#1.505" />
</t:premium>
@ -113,7 +117,8 @@
<t:it desc="Rounds to nearest cent when 'cent' (down)">
<t:premium class="length1"
generates="premRoundCentDown" index="k"
round="cent">
round="cent"
desc="Rounded-down premium to nearest cent">
<c:value-of name="#1.504" />
</t:premium>
@ -132,7 +137,8 @@
<t:it desc="Performs ceiling when 'up' (low)">
<t:premium class="length1"
generates="premRoundCeilLow" index="k"
round="up">
round="up"
desc="Ceiling premium (low)">
<c:value-of name="#1.1" />
</t:premium>
@ -151,7 +157,8 @@
<t:it desc="Performs ceiling when 'up' (high)">
<t:premium class="length1"
generates="premRoundCeilHigh" index="k"
round="up">
round="up"
desc="Ceiling premium (high)">
<c:value-of name="#1.7" />
</t:premium>
@ -170,7 +177,8 @@
<t:it desc="Performs floor when 'down' (low)">
<t:premium class="length1"
generates="premRoundFloorLow" index="k"
round="down">
round="down"
desc="Floor premium (low)">
<c:value-of name="#1.1" />
</t:premium>
@ -189,7 +197,8 @@
<t:it desc="Performs floor when 'down' (high)">
<t:premium class="length1"
generates="premRoundFloorHigh" index="k"
round="down">
round="down"
desc="Floor premium (high)">
<c:value-of name="#1.7" />
</t:premium>