Can anyone explain Boundary value Analysis and equavelance
partition with real time example
Answer Posted / vinod
Equivalence Partitioning is black box testing technique to
partition the test data in valid data range and use any
single value from the each range.
e.g. if field accepts value up to 100 then test data can be
taken single value from each data range 0-10, 10-20, 20-30
..... 90-100
Boundary Value Analysis is black box testing technique in
which test data is taken with +1,-1,and value for both the
ends.
e.g. if field accepts value up to 100 then test data can be
-1, 0, 1 ... 99, 100, 101
Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is test closure?
what is coupling integration testing
what is a horizontal and vertical matrix explain with examples
What is bug severity?
What do you plan to become after say 2-5yrs (Ex: QA Manager, Why?)
what do you mean by Develop test data through sourcing (or) handcrafting techniques
What is the difference between IE, Opera & Mozilla Firefox in web Testing and which brower will think that is much better?
What are the main key components in web applications and client and server applications? And explain the differences between them?
can somebody plz tel me about financial domain for manual tester?? which kind of application use and what is the approach of testing??
What is the difference between action & script ?
is it possible to do performance testing in stand alone application..how wil u do that ???????
what is meant by application server and its functions?
can u merge 10GUI map files into a single GUI map file in winrunner?
I have 2 yr Localisation testing exp now i want to job in MNC My manualtesting knowledge+2 yr exp sufficiant for in MNC
How to test the below code and write test case? Prove that this code is wrong? int add(int a ,int b) {return a+b; }