Test script: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 3:
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 manual 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.
 
For additional information about written test scripts, please see the [[test case]] article.