...
Condition based on equality of time spans
Define 3 intervals and compare them in a condition.
...
A SIL condition which checks if there are less than 3 days and a half remaining before the estimated time will be exceeded:
Code Block |
---|
interval tstRemaining = "3d 4h"; return tstEstimatetstRemaining ==< (tstSpentestimate +- tstRemainingtimeSpent); |
In the example above it is used the addition between tstSpent and tstRemainingsubstraction between estimate and timeSpent, but the user can also use the subtraction between tstEstimate and any of the other 2 intervalsaddition between two time intervals in SIL.
All sub-tasks must be resolved
...