Createstorage

Identifies and creates a storage to be used by various other tags within the DTF framework.

This tag also creates a new property constructed with the ID of this storage and the suffix .dir. So for a createstorage with an ID OUTPUT the property ${OUTPUT.dir} will be created. This property can be used to reference the physical location of the storage.

Required Attributes
id
This specifies the unique identifier by which all other tags can refer to this storage.
path
File system path to a directory that we wish to reference from other tags in this test case.
Usage Examples
Example #1
<local>
   
<createstorage id="INPUT" path="${dtf.path}/tests/ut/input" />
   
<createstorage id="OUTPUT" path="${dtf.path}/tests/ut/output" />
</local>