Existence Script:
If we want to Configure Existence Types, then we need to that in the Typelist
[Link] file.
Scenario: If you click on Comprehensive Coverage and then if you choose Limit 500
then it needs to be Required, If the Limit is 250, then It needs to be Suggested.
Write GOSU code for this Scenario?
Code:
Code - [Link]
function Demo(): ExistenceType{
var test = ExistenceType
if([Link] == 500){
test = ExistenceType.TC_REQUIRED
}
else if ([Link] == 250){
test = ExistenceType.TC_SUGGESTED
}
return test
}
Calling - On Dependent Script - [Link]
<ExistenceScript><![CDATA[return [Link]()]]></ExistenceScript>