Below demo script was developed by the developer to aid the testing / BA team that suppose to perform the tests.
story() "Detective Number Range Story demo" {
scenario "A provided number is not within the specified range" {
give "a number"{ number = "17" }
give "a begin value"{ begin = "18"; }
give "a end value"{ end = "50"; }
when "run inRangeValidatinoTask task"{ runtask inRangeValidatinoTask() }
then "The value is NOT within the provided range"{ inRange << false }
}