Difference between revisions of "DEFAULT DATA"

From Test Automation Patterns
Jump to navigation Jump to search
m (Topic titles in capital letters)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<div id="content_view" class="wiki" style="display: block"><span style="font-size: 14px">.................................................................................................................[http://testautomationpatterns.wikispaces.com/Main Page]] / Back to [[Design Patterns]] / Back to [[Test Automation Patterns]]</span>
+
<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 10: Line 11:
 
=<span style="font-size: 16px">'''Implementation'''</span>=
 
=<span style="font-size: 16px">'''Implementation'''</span>=
 
<span style="font-size: 16px">Prepare default data. Your [[TEST AUTOMATION FRAMEWORK]] substitutes default data for missing data during the data inputs in the test cases </span>
 
<span style="font-size: 16px">Prepare default data. Your [[TEST AUTOMATION FRAMEWORK]] substitutes default data for missing data during the data inputs in the test cases </span>
=<span style="font-size: 16px">Potential problems</span>=
+
=<span style="font-size: 16px">'''Potential problems'''</span>=
 
<span style="font-size: 16px">Default values should be valid, but there may be combinations of other values that make a normally valid value invalid.</span><br /> <span style="font-size: 16px">You may end up with a lot of people living at the same address… ;-)</span>
 
<span style="font-size: 16px">Default values should be valid, but there may be combinations of other values that make a normally valid value invalid.</span><br /> <span style="font-size: 16px">You may end up with a lot of people living at the same address… ;-)</span>
 
=<span style="font-size: 16px">'''Issues addressed by this pattern'''</span>=
 
=<span style="font-size: 16px">'''Issues addressed by this pattern'''</span>=
 
''<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">.................................................................................................................[http://testautomationpatterns.wikispaces.com/Main Page]] / Back to [[Design Patterns]] / Back to [[Test Automation Patterns]]</span></div>
+
 
 +
<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 and would like to contribute your experience to the wiki, please go to [[Feedback]] to submit your experience or comment.</span><br /> <br />
 +
 
 +
<span style="font-size: 14px">.................................................................................................................[[Main Page]] / Back to [[Process Patterns]] / Back to [[Test Automation Patterns]]</span></div>

Latest revision as of 15:53, 21 August 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

DATA CREEP

Experiences

Thanks to Richard Bradshaw, whose pattern DATA BUILDER inspired this one.

If you have used this pattern and would like to contribute your experience to the wiki, please go to Feedback to submit your experience or comment.

.................................................................................................................Main Page / Back to Process Patterns / Back to Test Automation Patterns