Difference between revisions of "LITTER BUG"
Jump to navigation
Jump to search
m (corrected link to Execution issues) |
|||
Line 8: | Line 8: | ||
# <span style="font-size: 16px">If a test fails, it leaves the System under Test in such a condition that no more tests can run</span> | # <span style="font-size: 16px">If a test fails, it leaves the System under Test in such a condition that no more tests can run</span> | ||
# <span style="font-size: 16px">A test writes so much stuff that the next tests either cannot execute or are much slower</span> | # <span style="font-size: 16px">A test writes so much stuff that the next tests either cannot execute or are much slower</span> | ||
− | <span style="font-size: 16px">'''Questions'''</span> | + | =<span style="font-size: 16px">'''Questions'''</span>= |
+ | <span style="font-size: 16px">Are your tests Independent from each other?</span><br /><span style="font-size: 16px">What happens when the system crashes?</span> | ||
=<span style="font-family: Arial; font-size: 16px">'''Resolving Patterns'''</span>= | =<span style="font-family: Arial; font-size: 16px">'''Resolving Patterns'''</span>= | ||
<span style="font-size: 16px">[[FAIL GRACEFULLY]]: If a test fails it should restore the system and the environment so that the successive tests are not affected</span><br /> <br /> <br /> <span style="font-size: 14px">.................................................................................................................[[Main Page]] / Back to [[Execution Issues]] / Back to [[Test Automation Issues]]</span></div> | <span style="font-size: 16px">[[FAIL GRACEFULLY]]: If a test fails it should restore the system and the environment so that the successive tests are not affected</span><br /> <br /> <br /> <span style="font-size: 14px">.................................................................................................................[[Main Page]] / Back to [[Execution Issues]] / Back to [[Test Automation Issues]]</span></div> |
Latest revision as of 16:31, 27 June 2018
.................................................................................................................Main Page / Back to Execution Issues / Back to Test Automation Issues
.................................................................................................................Main Page / Back to Execution Issues / Back to Test Automation Issues
Issue Summary
Tests leave spurious data in databases, history etc. that slows performance or hinders further tests
Category
Execution
Examples
- A test changes the database so that it cannot run again with the same initial conditions
- If a test fails, it leaves the System under Test in such a condition that no more tests can run
- A test writes so much stuff that the next tests either cannot execute or are much slower
Questions
Are your tests Independent from each other?
What happens when the system crashes?
Resolving Patterns
FAIL GRACEFULLY: If a test fails it should restore the system and the environment so that the successive tests are not affected.................................................................................................................Main Page / Back to Execution Issues / Back to Test Automation Issues