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

How to Put Load on a Script in JMeter

In last post we discussed about how to record a test script and Firefox settings to run the script. In this post we will discuss about how the Thread Group will work, how can we put n number of users to perform load testing, In JMeter by using Thread Group, we can create virtual users. Thread Group is a set of thread which work in same scenario. There are multiple thread group are available which is use to configure how the virtual users interest with the application, How much load maintain and till how much time load maintain.

How to take the Screenshot in Selenium WebDriver?

If we want to take the screenshot then we have to convert our WebDriver object into the screenshot object. we need to change the behavior of the drive to take the screenshot . We can do it by casting

JMeter Overview Description

In this article we will go through the multiple section of JMeter and describe the tool information. we will discuss about every component of JMeter tool in this Article so that you can hands on while working on script on JMeter about these components.