Explain Equavalence Partioning.With example?
Answers were Sorted based on User's Feedback
Answer / revati
Equivalence portioning is a technique for testing
equivalence classes rather than undertaking exhaustive
testing for each value of the larger class.
An equivalence class is a subset of data that is
representative of a larger class.
For example:
1.If an input condition specifies a range, then there will
be one valid and two invalid equivalence classes are
defined as follows:
If the Name text field should be 5 to 10 alpha
characters. Then instead of checking 6 times Name text
field ,make one class with range <5-10> which will be
called valid class and another class will be invalid
class which will be less than and greater than the range.
2.If an input condition requires a specific value, then one
valid and two valid classes are defined.
e.g. Input data is 6 digit number, then valid class is
<6 digit> and invalid classes are (<6) &( >6)
3.If an input condition is a Boolean then one valid and one
invalid equivalence classes are defined.
e.g. True or False.
The aim is to minimize the number of test cases require to
cover these input conditions.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / subhash
Equivalence Partitioning is a black box testing technique.
we use Equivalence Partitioning to divide the test case in
equivalence Partitioned Valid and Invalid.
example: Consider a credit card limit accepted only range
between(20000 to 50000).
test case will be
Less than 20000(invalid)
Between 20000 to 50000 (valid)
Greater than 50000 (Invalid)
Hope this will clear your doubt..
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / logu
Testing the application or field with a different set of data within a specified range.
Ex: User name should accept 2 to 6 character means we have to crate the Test case for only 2 to 6 ranges not more than that.
| Is This Answer Correct ? | 4 Yes | 3 No |
About Hierarchy level in your company.
what is impact analysis
Do we have to execute all the test cases while doing sanity testing and regression testing??(manual testing)
Hi frnds, can any one tell me what are d real role & responsibility of an tester ? to be a GOOD TESTER, what we have to do ??
A server configuration is controlled from a single web page with multiple options: ● 20 drop-down menus, with 3-4 options each. ● 5 check-boxes. ● 1 multi-select menu, with 5 options. ● 1 template selection, with 6 options: A, B, C, D, E, F. ○ When options A, B, C, D are selected, all options (#1-#3) above are available. ○ When options E, F are selected, only 10 out of 20 drop-down menus have an effect. ● Besides item #4, developers input is that all options are independent, I.e., not impacting each other. What is the required number of test configurations required in order to test the server configuration and release in good quality: a) Assuming first release. b) Assuming regression tests for release with new features not impacted by the above options. Test configuration is a complete set of options that were selected to be tested in one complete server configuration scenario. I.e, a test configuration is set of 17 or 27 specific options tested together.
what is test plan and what it consists?
15 Answers AndPlus, Forum, MBT, TCS,
How to monitor test progress?
could anyone tell me atleast 5 ADV & DIS-ADV of Manual and automation testing
What is known as data-driven testing?
CAN ANY ONE PREPARE TEST CASES FOR SUPPLY ACHAIN MANAGEMENT AND IF YES I WILL GIVE THE REQUIREMENT WHICH CONTAINS NEARLY 27 PAGAES
how will define a bug generally?
what is the defference between stress and load testing?