Misplaced Pages

Test automation: Difference between revisions

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
Browse history interactively← Previous editNext edit →Content deleted Content addedVisualWikitext
Revision as of 21:58, 9 March 2005 edit69.211.222.95 (talk) Added description of test frameworks to final paragraph. - MHE.CodeWonk@GMail.com← Previous edit Revision as of 23:33, 10 March 2005 edit undoCodeWonk (talk | contribs)8 edits Added additional paragraph tying things together with test cases. Added See also section.Next edit →
Line 14: Line 14:
Many test automation tools provide ] and ] features that Many test automation tools provide ] and ] features that
allow users to record interactively user actions and replay it back allow users to record interactively user actions and replay it back
any number of times, comparing actual results to those expected. However, a growing trend in software development is to use testing frameworks such as the JUnit or NUnit frameworks which allow the ] to test whether various components of the software are acting as expected in various circumstances. any number of times, comparing actual results to those expected.

A growing trend in software development is to use testing frameworks such as the ] or ] frameworks which allow the ] to conduct ]s to determine whether various sections of the ] are acting as expected in various circumstances. ]s describe tests that need to be run on the program to verify that the program runs as expected. In a properly tested program, there is at least test in the software ] designed to satisfy a ] requirement.


] ]
] ]
] ]

==See also==
*]
*]
*]
*]

{{compu-stub}}

Revision as of 23:33, 10 March 2005

Test automation is the use of software to control the execution of tests, the comparison of actual outcomes to predicted outcomes, the setting up of test preconditions, and other test control and test reporting functions.

Over the past few years, tools that help programmers quickly create applications with graphical user interfaces have dramatically improved programmer productivity. This has increased the pressure on testers, who are often perceived as bottlenecks to the delivery of software products. Testers are being asked to test more and more code in less and less time. Test automation is one way to do this, as manual testing is time consuming. As and when different versions of a software are released, the new features will have to be tested manually time and again. But, now there are tools available that help the testers in the automation of the GUI which reduce the test time as well as the cost, other test automation tools support execution of performance tests.

Many test automation tools provide record and playback features that allow users to record interactively user actions and replay it back any number of times, comparing actual results to those expected.

A growing trend in software development is to use testing frameworks such as the JUnit or NUnit frameworks which allow the code to conduct unit tests to determine whether various sections of the code are acting as expected in various circumstances. Test cases describe tests that need to be run on the program to verify that the program runs as expected. In a properly tested program, there is at least test in the software code designed to satisfy a unit test requirement.

See also

Stub icon

This computing article is a stub. You can help Misplaced Pages by expanding it.

Categories: