TestData - AppDaddy-Software-Solutions-Inc/framework-markup-language GitHub Wiki
<TESTDATA/> : Datasource
The <TESTDATA/> datasource is used exclusively for prototyping and testing purposes.
Name | Type | Default | Description | Req |
---|---|---|---|---|
rows | int | 2000 | The number of rows to generate |
The <TESTDATA/>
datasource produces multiple rows of dynamically created data. The number of rows created can be specified using the rows
attribute. The default is 2000. The data created is in the following format:
<USERS>
<USER>
<index>0<index>
<rights>16<rights>
<user>john.doe56</user>
<first>John<first>
<last>Doe</last>
<age>42</age>
<city>New York</city>
<occupation>Banker<occupation>
<company>Chase Manhatten<company>
<email>[email protected]<email>
</USER>
<USER>
<index>1<index>
<rights>8<rights>
<user>jane.doe12</user>
<first>Jane<first>
<last>Doe</last>
<age>22</age>
<city>Miami</city>
<occupation>Software Engineer<occupation>
<company>Microsoft<company>
<email>[email protected]<email>
</USER>
</USERS>