| |
GeekInterview.com > Interview Questions > Testing > Bug Tracking
| Print | |
Question: write the equivalence classes for 1-99 range of value write test case and testdata for a triangle After closing a bug we can open it again or not why do u like testing than development what is meant by join,different types of join what are the different types of files saved in the folder along with the test results what r the test activities u may want to automate performance test comes under which type of testing Resource bugs,timely bugs comes under which type of testing can we do performance testing manually
|
| August 08, 2006 07:07:40 |
#3 |
| karabasappa |
Member Since: Visitor Total Comments: N/A |
RE: write the equivalence classes for 1-99 range of va... |
| equivalence class is a subset of data of larger class.which contains one valid and 2 invalid class1) 1-99 invalid : {<1} Valid : {1-99} Invalid : {>99}Final Test Data: {0,55,100} from each class.2) Triangle Isoscales Scalene EquilateralValid class: { a=b !=c } { a != b !=c} { a = b = c }Invalid Class {a=b=c} ,{a!=b!=c} {a=b=c} ,{a=b!=c} {a=b!=c} ,{a!=b!=c} {a,b,c not less than 0} {a,b,c not less than 0} {a,b,c not less than 0} FinalTestdata : {(2,2,4),(2,2,2)(2,3,4 )(2,2,0)} {(2,3,4),(2,2,2)(2,3,2 )(2,2,0)} {(2,2,4),(2,2,2)(2,3,4 )(2,2,0)} |
| |
Back To Question | |