Project

General

Profile

User story #4200

Updated by François ARMAND over 10 years ago

We need to add a new variable type that allows to represent a variable whose values are provided in the spec.  
 Here, we don't talk about a default value, but a list of variables with a value, maybe different each time.  

 So, the following spec: 

 <pre> 
     

     <PREDEF name="foo"> 
         ... 
         <VALUES><VALUE> val 1 </VALUE><VALUE> val 2 </VALUE></VALUES> 
         ... 
     </PREDEF> 
 </pre> 

 Stands for two variable, NOT updatable by the user, with value "val 1" for the first variable et and value "val 2" for the second one.  


 Also, for the integration with ncf, new Technique will comes with a template of expected reports. 
 We need to be able to know in a Technique object if the Technique is a new one, with the CSV file, or an old one, without it.  
 Adding a tag in the XML for that will allow to validate the presence of the CSV at the expeted place and adapt the expected report process to use it.  

 So the parser need to be able to read "PROVIDE_CSV_REPORT_TEMPLATE" and set a new flag on technique, and default the value of the flag to "false" if the tag is absent.   

Back