what is difference between equivalence partition and
boundarary value ananlysis?
Answers were Sorted based on User's Feedback
let me u explain with an example:
think a login page two text boxes for userid and passwd
and there are some conditions given in SRS which should be
satisfied like for suppose
username: min length=4
max length=7
alphanumeric
for this if u where to write BVA and ECP
then it is in this manner
BVA
min+1 valid
min-1 invalid
max+1 invalid
max-1 valid
ECP
valid invalid
0-9 special characters
a-z
A-Z
so simple in
BVA:we are testing the boundaries
ECP: we are dividing input values to be given into valid
and invalid values
hope u can try it for passwd
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / akram
Boundary value analysis(BAV)and Equvilence partition both
are techniques in black box testing
BAV:in this technique we split the domin in to input
clases of data along its boundaries and generate test cases
for boundary values
lowervalue + 1 , Upper +1 ,Lower -1 ,Upper -1,Lower,Upper
Equivalence partition:in this technique we take the domain
value and split the range in to equivalent classes and
generate the testcases for equivalent clases
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / sr
HI,
Equivanence partition:we check any one value in between the
range.
For EX: if a range is 10 to 50 (10-50).ten we have to check
any one value in between the range. for this we take 40.it
means it it a valid test case. for these there are three
testcases will be given.
BVA:
we check the boundry values. in same example 10 to 50 means
we have to check b giving 10 and 50 .
here ther are four testcase will be given.
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / rani
BVA boundary value analysis here we check for minimum
characters and maximum characters.
example:An input field should accept three digit
number,the 1st digit should start with 1
ECP:verify for valid and invalid combination of data and
numbers.
| Is This Answer Correct ? | 0 Yes | 0 No |
What Questions Project Manager will be aske?
what is agile testing?
What is Tacebility Matrix What are the Columns it contains
wht is Driver in Integration testing
i heard that mainframe testing is diff from other environments & has lot of keyboard input????pl clarify my doubt & let me know in what way its diff??
What is bud testing?
What is "BRS". Plz Explain whats the content in BRS" Diff between BRS,SRS,FRS?
12 Answers BoA, PAF,
The project is going through the maintainance phase I logged a defect which is critical for resolving ,the developement team is in US when they got the reported bug they gave the xplanation that it is a six year old written code moreover we don't have proper followup documents to authenticate this one....in this senario wat will u do??
Can anyone please answer the below question on Manual Testing: Tell me about atleast 5 bugs you come across in your last testing?
does the efficiency of test increases with increase in number of test cases.that is the more number of test cases then more efficient is the applications test,is it true?
Can you explain pair-wise defect fundamental?
What is Functional Testing and Regression Testing?give one real time Example?