what is mutation testing ? when we are using this type of
testing?
Answer Posted / anand kumar
Mutaion means a change.
While u r doing unit testing u'l prerpare some unit
testcases and test the program. After that to estimate the
testing u have conducted u'll introduce some mutations
(changes) in ur program/unit and repeat the same tests then
few test should give wrong results as u use the same data
and test procedure then it shows the completeness of ur
test cases for ur unit test. if ur test passes even after
making these mutations meens u r not test all flows of ur
program which implies that ur test casae r not completely
tests the unit.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
how can i count the no of edit field in a page and fill the multiple edit field
Can you explain data-driven testing?
What are the steps involved in the automation process ?
What are the important operations in database testing?
Please explain what is the hybrid framework?
Elaborate the fields in bug report in automated testing
Explain me what are the main advantages of automation testing?
what r the diffence between QTP 8.2 & QTP9.0?
I want to test a mobile software by an automation tool which is a IP telephony based software designed for both ios and android phone, basically this apps is develop for make call though few low cost audio codecs from Aircraft to Ground and Ground to Aircraft so anyone can suggest me which testing tool we can use for it
Where to maintain information like login, password and url?
Tell me what is a keyword-driven framework?
What is ‘good code’? What is ‘good design’?
What criteria do you consider for automating a test?
Explain load testing on websites?
Program/pseudo code on FIFO? Input a string and make sure that output is in FIFO manner. Eg, Enter 'John Dave' as input and output should be 'John Dave' not 'Dave John'. (inbuilt functions like push, pop were given)