Software Testing
Certified Software Quality Analyst(CSQA) Certification Guide
What is CSQA? CSQA stands for Certified Software Quality Analyst . This course is provided by QAI...
Software testing is the process of verifying and validating a software application to check whether it is working as expected. The intent is to find defects and improve product quality. There are two ways to test software, namely Positive Testing, and Negative Testing.
Positive Testing is a type of testing which is performed on a software application by providing the valid data sets as an input. It checks whether the software application behaves as expected with positive inputs or not. Positive testing is performed in order to check whether the software application does exactly what it is expected to do.
For example -
There is a text box in an application which can accept only numbers. Entering values up to 99999 will be acceptable by the system and any other values apart from this should not be acceptable. To do positive testing, set the valid input values from 0 to 99999 and check whether the system is accepting the values.
Negative Testing is a testing method performed on the software application by providing invalid or improper data sets as input. It checks whether the software application behaves as expected with the negative or unwanted user inputs. The purpose of negative testing is to ensure that the software application does not crash and remains stable with invalid data inputs.
For example -
Negative testing can be performed by entering characters A to Z or from a to z. Either software system should not accept the values or else it should throw an error message for these invalid data inputs.
In both the testing, the following needs to be considered:
Following techniques are used for Positive and negative validation of testing is:
This is one of the software testing technique in which the test cases are designed to include values at the boundary. If the input data is used within the boundary value limits, then it is said to be Positive Testing. If the input data is picked outside the boundary value limits, then it is said to be Negative Testing.
For example -
A system can accept the numbers from 0 to 10 numeric values. All other numbers are invalid values. Under this technique, boundary values -1,0,1 and 9,10,11 will be tested.
This is a software testing technique which divides the input data into many partitions. Values from each partition must be tested at least once. Partitions with valid values are used for Positive Testing. While partitions with invalid values are used for negative testing.
For example-
Numeric values Zero to ten can be divided into two (or three) partitions. In our case, we have two partitions -10 to -1 and 0 to 10. Sample values (5 and -5) can be taken from each part to test the scenarios.
Conclusion:
Testing helps deliver quality software application and ensures the software is bug-free before the software is launched. For effective testing, use both - Positive and Negative testing which give enough confidence in the quality of the software. Real-time users are can input any values and those needs to be tested before release.
What is CSQA? CSQA stands for Certified Software Quality Analyst . This course is provided by QAI...
What is State Transition Testing? State Transition Testing is a black box testing technique in which...
Project Summary This project will put you in a corporate setting. You will be testing a demo...
{loadposition top-ads-automation-testing-tools} A Code Review tool automates the code audit...
Training Summary Android & iOS are the most popular mobile OS. There are millions of application designed...
What is Software Testing Life Cycle (STLC)? Software Testing Life Cycle (STLC) is a sequence of...