what is mutation testing ? when we are using this type of
testing?

Answer Posted / shankar

Mutation testing is performed as part of Unit Testing. In
this testing phase, programmers will perform some change in
the coding and execute previously completed tests. If all
the tests are passed, then he will concentrates on the
same. If any one of the test is failed then he will
concentrate on the further coding.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

i need test cases for defect maganement tools

1577


Could any one share scripts... where we can Parameterize radio buttons and Check boxes in Rational Robot.

1604


What type of scenarios can be automated?

558


Tell me what type of scenarios can be automated?

514


When will you automate a test?

597






What is tsl?

555


Do you know what is a xpath?

538


Discuss the economics of automation and the role of metrics in testing.

2029


How do you plan test automation?

1449


Do you know what is the difference between "type" and "typeandwait" command?

521


Is there any freeware tool for automation testing of mobile applications for BlackBerry and iPhone platforms ?

2503


Tell me what is an absolute xpath?

525


Hi, Below is the code that i ran on selenium RC using eclipse IDE and java coding.: package source; import org.testng.annotations.BeforeSuite; import org.testng.annotations.Test; import com.thoughtworks.selenium.*; public class parameterized extends SeleneseTestCase { private Selenium browser; public static void main(String []args) { String arr[] = new String[5]; arr[0]= "bert"; arr[1]= "regular"; arr[2]= "copyonly"; arr[3]= "doert"; arr[4]= "inter"; parameterized obj = new parameterized(); obj.setUp(); obj.login_parameterize(arr); } @BeforeSuite public void setUp() { browser = new DefaultSelenium("localhost",4444, "*chrome", "http://goolge.com"); browser.start(); browser.open("http://goolge.com"); browser.waitForPageToLoad("30000"); browser.windowMaximize(); browser.open("/"); browser.click("gb_23"); } @Test public void login_parameterize(String[] arr ) { for(int i=0;i<=5;i++) { for(int j=0;j<=2; j++) { browser.type("//input[@id='Email']", arr[i]); browser.type("//input[@id='Passwd']", arr[i]); browser.click("//input[@id='signIn']"); browser.waitForPageToLoad("30000"); } } } public void EnterValuesIntoTextField_CheckWithGetValue() throws Exception { selenium.open("http://www.essaywriter.co.uk"); assertEquals("", selenium.getValue("id=textInput")); selenium.type("id=textInput", "Text In The Field"); assertEquals("Text In The Field", selenium.getValue("id=textInput")); } } When i ran this test i got an error which says: "Method login_parameterize requires 1 parameters but 0 were supplied in the @Test annotation." Any help is much appreciated. thank Gab

2143


Explain me what kinds of annotations are used in testng?

512


How does load testing work for websites?

612