Test script: Difference between revisions

Content deleted Content added
Revert to revision 47995971 dated 2006-04-11 19:08:21 by 12.108.168.179 using popups
No edit summary
Line 1:
A '''test script''' is a short program written in a programming language used to test part of the functionality of a software system. A written set of steps that should be performed manually can also be called a test script, however this is more correctly called a '''[[test case]]'''.
 
Any test that is written as a short program is regarded as an automated test. Test scripts written as a short program can either be written using a special automatedmanual functional GUI test tool or in a well-known [[programming language]] (such as [[C++]], [[Tcl]], [[Expect]], [[Java programming language|Java]], [[Perl]], [[Python programming language|Python]], or more recently, [[Ruby programming language|Ruby]]). Automated test tools can test many areas of system functionality such as the user interface, performance of the system, the system code and the requirements.
 
Automated testing has the advantage over manual testing in that it is easily repeatable, and thus is favoured when doing regression testing. This however is not always the case as automated tests may be poorly written and can break during playback. Since most systems are designed with human interaction in mind, it is good practice that a human tests the system at some point.