Difference between revisions of "DEFAULT DATA"
Line 1: | Line 1: | ||
− | <div id="content_view" class="wiki" style="display: block"><span style="font-size: 14px">.................................................................................................................[ | + | <div id="content_view" class="wiki" style="display: block"> |
+ | <span style="font-size: 14px">.................................................................................................................[[Main Page]] / Back to [[Design Patterns]] / Back to [[Test Automation Patterns]]</span> | ||
=<span style="font-size: 16px">'''Pattern summary'''</span>= | =<span style="font-size: 16px">'''Pattern summary'''</span>= | ||
<span style="font-size: 16px">Use default data to simplify data input</span> | <span style="font-size: 16px">Use default data to simplify data input</span> | ||
Line 15: | Line 16: | ||
''<span style="font-size: 16px">[[DATA CREEP]]</span>'' | ''<span style="font-size: 16px">[[DATA CREEP]]</span>'' | ||
=<span style="font-size: 16px">'''Experiences'''</span>= | =<span style="font-size: 16px">'''Experiences'''</span>= | ||
− | <span style="font-size: 16px">Thanks to Richard Bradshaw, whose pattern DATA BUILDER inspired this one.</span><br /> <br /> <span style="font-size: 16px">If you have used this pattern, please add your name and a brief story of how you used this pattern: your context, what you did, and how well it worked - or how it didn't work!</span><br /> <span style="font-size: 14px">.................................................................................................................[ | + | <span style="font-size: 16px">Thanks to Richard Bradshaw, whose pattern DATA BUILDER inspired this one.</span><br /> <br /> <span style="font-size: 16px">If you have used this pattern, please add your name and a brief story of how you used this pattern: your context, what you did, and how well it worked - or how it didn't work!</span><br /> <br /> <span style="font-size: 14px">.................................................................................................................[[Main Page]] / Back to [[Process Patterns]] / Back to [[Test Automation Patterns]]</span></div> |
Revision as of 11:04, 28 June 2018
.................................................................................................................Main Page / Back to Design Patterns / Back to Test Automation Patterns
Pattern summary
Use default data to simplify data input
Category
Design
Context
This pattern is useful when test cases need a lot of common data that is not all meaningful for the specific test.
Description
Instead of cluttering test cases with data that is needed, but is not relevant for the specific test, use default data.
For example, if you are interested in testing validation for a Name field but don't care about the contents of the address or phone number fields, set up a default value for the address ("123 Main Street") and phone number. Then in your test, you will say what the Name field should contain, but not what the other fields should contain, so your framework will copy the default values (because if they were left blank, the test would fail) to those fields.
Implementation
Prepare default data. Your TEST AUTOMATION FRAMEWORK substitutes default data for missing data during the data inputs in the test cases
Potential problems
Default values should be valid, but there may be combinations of other values that make a normally valid value invalid.
You may end up with a lot of people living at the same address… ;-)
Issues addressed by this pattern
Experiences
Thanks to Richard Bradshaw, whose pattern DATA BUILDER inspired this one.If you have used this pattern, please add your name and a brief story of how you used this pattern: your context, what you did, and how well it worked - or how it didn't work!
.................................................................................................................Main Page / Back to Process Patterns / Back to Test Automation Patterns