Give examples of boundary value and equivalence
partitioning test cases.
Answer Posted / romario
equivalence partitioning
--------------------------
consider a form field which ask for the age of a person.
let the age should be >=18 and <=50.
this range can be divided into three classes.
==>> values less than 18(invalid class)
==>> values between 18-50(valid class)
==>> value greater than 50(invalid class)
we can see that there are two invalid and one valid class.
it is not necessary that we have to use multiple values
from each class.One value from each class is more than
enough.
Boundary Value Analysis
--------------------------
consider the same scenario used above.
here we can give the test inputs as follows
==>>lower limit+1 & lower limti-1(ie. 17 & 19)
==>>lower & upper limits (ie. 18 & 50)
==>>upper limit+1 & upper limit-1 (ie 49 & 51)
There will be six test inputs when we are using boudary
value analysis.
| Is This Answer Correct ? | 48 Yes | 6 No |
Post New Answer View All Answers
can anyone please help me in writing Test cases for HRMS,ERP and for CRM Apllications...I am joined as a trainee.so i have to write test cases for these applications..Soo can anyone pls help me....mail id: bapuji.karyampudi@gmail.com....Please reply me guys.
Explain the state testing?
Describe to me what you see as a process. Not a particular process, just the basics of having a process.
Explain the logic testing?
Write test cases to test a browser app
Write all test cases for Bus Pass Renewal
how to test a UI and aslo we need to check a log data fil which gets populated in the db.for this two scenarios give me test cases
can any body help me with providing a a case for usability testing...
Why does the boundary value analysis provide good test cases?
There is French dictionary and if you want to check it in English and there is no documentation available then how you will test it and write a test case and Test scenario on it.
write a test case flipkart login page
I want 100 test scenario for gmail
Test Case for Text Editor!
How does the size of the OPCODE field limit the number of operations? Give an example to support your explanation?
You have designed test cases to provide 100% statement and 100% decision coverage for the following fragment of code. If width > length then biggest_dimension = width else biggest_dimension = length end_if the following has been added to the bottom of the code fragment above. Print 'biggest dimension is ' &biggest_dimensionprint 'width: ' & width print 'length: ' & length how many more test cases are required?