Load Testing: The load test is designed to test the system by continuously and steadily increasing the load on the system until the limit is reached.
Example For example, to test the email functionality of an application, it can be flooded with 1000 users at a time. Now 1000 users can start email transactions (read, send, delete, forward, reply) in various ways. If we take one transaction per user per hour, it will be 1000 transactions per hour. By simulating 10 transactions / users, we could load a test email server, occupying 10,000 transactions / hour.
Stress testing: During stress testing, various actions to overload existing resources with redundant tasks are performed in an attempt to destroy the system.
Example: For example, a word processor such as Writer1.1.0 from OpenOffice.org is used in developing letters, presentations, spread sheets, etc. The goal of our stress testing is to download it with a lot of characters.
To do this, we will repeatedly insert a row of data until we reach the threshold limit for processing a large amount of text. Once a character reaches 65535 characters, it simply refuses to accept more data. The result of stress testing on Writer 1.1.0 gives a result that does not fall under stress and that it copes with the situation gracefully, so make sure that the application works correctly even under severe stress conditions.
Rehan Ali Nov 29 '12 at 10:56 2012-11-29 10:56
source share