-
Junior Member
boundary value analysis
Hi,
What is boundary value analysis and equivalence partitioning method with example.
Thanks.
-
Junior Member
Re: boundary value analysis
Hi,
Consider a situation where u pass the number as the input .(eg: Entering ur marks on a web page.)
Assumption: marks are between 0 to 100
For this
1) Boundary value analysis : take the boundaries 0 and 100 and test for the condition such as -1,0,+1 and 99,100,101
2) Equivalence partitioning : is not as such a stand alone method for testing. It is implemented by Boundary value analysis.
Partition the inputs into a) valid and b) invalid partition as
a) valid 0 -100
b) invalid -1 to -infinity and 101 to infinity
and then apply the boundary value analysis for the above.
Still if u not clear, use this Equivalence partitioning, Boundary value analysis
Regards,
Elango.
-
Junior Member
Re: boundary value analysis
what r the possible test cases for railway reservation system
-
Re: boundary value analysis
Boundary value analysis is one of the method of black box testing, in which the values on the boundary is tested. For example, if the benefit amount should fall in the range $1000 to $10000, the testing on the boundary will be carried based on the following inputs. I. On the boundary - $1000 and $10000, the test case should pass ii. Below the boundary - value less than $1000, the test case should fail ii. Above the boundary - value greater than $10000, the test case should fail equivalence partitioning is another approach of testing followed in black box testing where the input values are partioned and tested. For example, if the benefit amount is in the range $1000 to $10000 then the following criterias are tested as the input values are equally partioned in to three categories. I. Values less than $1000, the test case should fail ii. Values between $1000 to $10000 the test case should pass iii. Values greater than $10000 the test case should fail warm regards, ganesan
-
Junior Member
Re: boundary value analysis
Boundary value analysis:a test data selection technique in which values are chosen to lie along data extremes. design the test cases to validate max,mini values outside/inside ,typical and error values by the system.
Equivalance partition:design the testcases to validate the application for valid and invalid testdata.
-
Junior Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules