Skip to main content

Equivalence Partitioning

Equivalence Partitioning is the Software Testing technique in which divide the Test input data into partition of the equivalent and from these partition, we will derived the Test Cases to test the software.
As you know that it is not possible the Exhaustive Testing to test the software on every test data so we divide the Test Data in the partition. This partitioned Test Data covers the each partition and we do not need to waste our time to test for different data from single partition. This will reduce the Test Cases and also reduce the cost of the software. This is the Black Box Testing and the specification dependent Testing.

In Equivalence Partitioning, we test the software with single value form each partition and if the software work with that single value as per requirement then we assume that our software will work for other values in that partition.

Let me take an example to understand the Equivalence Partitioning suppose an input box accept only 1 to 100 integer value so we will divide the Test Date in partition


  •  First Test case will be any number greater then 100 will be invalid Partition
  • Second Test case will be any number less then 1 means 0 or less then 0 will come in invalid partition.
  • Third Test case will be both 1 and 100 will come in the valid partition
so the total value that needed to test the input are 0,1,100,101. These 4 test cases are enough to test that input. 

Comments

Popular posts from this blog

What is API?

In general way, API (Application Programming Interface) is the intermediate software which is useful for two applications to communicate. API is the tool which is used for interaction of two applications. If developer developing any software which have multiple blocks (Modules) than developer use APIs to put them together.

Smoke Testing

In Smoke Testing, Testing team check the key feature or key bugs of the software. Smoke testing ensure that critical functionality of the software is working fine.If key features are not working then it is no needed to test the overall functionality because it is just waste of time. In Smoke Testing, test team check the basic feature of the software and if basic feature is not working it means software is broken very badly and further testing is unnecessary. If Smoke Testing failed then it is declared that build is unstable and revert back to developer team until smoke test is pass.

Guide to Setup Selenium Web Driver

In this Article i am describing you how to setup Selenium Web Driver in your Machine Step 1: First You need to install Java in your Computer. To download the java Click Here