How to create stubs? what is the use of Stubs and drivers?
who is the responsible person of this?

Answer Posted / naren

Stubs and Drivers are created during Integration Testing.
Stubs will be created during Top-Down approach. Stubs
simulates the called structure's functionality. Whereas
Drivers will be created during Bottom-Up approach. Drivers
act as calling function.

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Tell me what are the different types of navigation commands?

495


hi, I want to study TIA portla V11. where can I get online courses?

1379


Elaborate the fields in bug report in automated testing

540


Can we find all links on a web page?

518


Write a short compiled module which selects random numbers. and what function is used to call your customized compiled module?

516






What is a critical bug in a testing field?

542


Where to maintain information like login, password and url?

523


How do you plan test automation?

1451


Tell us what is the alternate way to click on login button?

504


What are pros and cons of automating tests at ui layer?

545


What are the different types of an automation tool that you are aware of?

566


Give some examples for functional & regression test tools?

497


What is meant by the automation framework?

533


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


how to write ciertification in QTP?

1620