Test script: Difference between revisions

Content deleted Content added
Jtowler (talk | contribs)
m Undid revision 571474059 by 218.248.35.62 (talk) The previous version was correct (times / time)
No edit summary
Line 13:
These last two types are also done in manual testing.
 
The major advantage of ''automatedAutomated testing'' is thatadvantageous for a number of reasons: tests may be executed continuously without the need for a human intervention., Anotherthey advantageare overeasily ''manual testing'' in that it is fasterrepeatable, and easilyoften repeatablefaster. Thus,Automated ittests isare worthuseful consideringin automatingsituations testswhere ifthe theytest areis to be executed several times, for example as part of [[regression testing]]. Automated tests can be disadvantageous when poorly written, leading to incorrect testing or broken tests being carried out.
 
Disadvantages of automated testing are that automated tests can — like any piece of software — be poorly written or simply break during playback. They also can only examine what they have been programmed to examine. Since most systems are designed with human interaction in mind, it is good practice that a human tests the system at some point. A trained manual tester can notice that the system under test is misbehaving without being prompted or directed however; automated tests can only examine what they have been programmed to examine. Therefore, whenWhen used in regression testing, manual testers can find new bugs while ensuring that old bugs do not reappear while an automated test can only ensure the latter. That is why mixedMixed testing, with automated and manual testing, canis give veryoften good results,used; automating what needs to be tested often and can be easily checked by a machine, and using manual testing to do [[test design]] to add them to the automated tests suite and to do [[exploratory testing]].
 
One shouldn't fall into the trap of spending more time automating a test than it would take to simply execute it manually, unless it is planned to be executed several times.{{Citation needed|date=February 2013}}