| VSTS for DB Pros introduces the concept of the virtual Sandbox for databases. You can apply changes like the creation of tables, constraints, etc. without affect an actual database on a server. Another new feature is the Data Generation Plan. This allows you to not only create realistic test data based on your schema, but also allow you to use Cardinality to create ratios of test data between tables in your schema. You can also set a percentage of test data to be invalid data so you can test how it affects your system. The cool thing about this is you don't have to dump your production data down to get good data for your tests.
VSTS for DB Pros allows you to create data generators for all of the SQL Data Types as well as Regular Expressions and Data Bound generators. If you have a test database that you already use, the Data Bound generator can read from that as the source of your test data or you could read the results of previous tests. Another cool thing is that you can write custom Data Generators and plug them in.
|