Difference between revisions of "Synthesizing SVT Data"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) (New page: =Overview= Preparing data for performance tests is a very important part of the preparation phase for a load test exercise. The following scripts provide simple examples of approaches to...) |
PeterHarding (talk | contribs) |
||
Line 16: | Line 16: | ||
=Other Examples= | =Other Examples= | ||
* [[Python - File operations]] | |||
[[Category:LoadRunner]] | [[Category:LoadRunner]] | ||
[[Category:Python]] | [[Category:Python]] |
Revision as of 10:02, 16 April 2008
Overview
Preparing data for performance tests is a very important part of the preparation phase for a load test exercise. The following scripts provide simple examples of approaches to synthesize parameter data for use by the test scripts.
User Login IDs
#!/usr/bin/env python print 'UserId' for i in range(200): print "svt%03d" % i