Checkout our demo site to practice selenium https://magento.softwaretestingboard.com/

1 like 0 dislike
230 views
by The go-to Tester (262 points)
retagged by
I am panning to prepopulate data from DB for api automation. how to mock the data before starting the test. Please provide me some example.

1 Answer

0 like 0 dislike
by The go-to Tester (181 points)

You can try exploring Mockito framework: http://site.mockito.org/

Github: https://github.com/mockito/mockito

Gradle dependency: dependencies { testCompile "org.mockito:mockito-core:1.+" }

 

Sample:

 

Verify interactions:
 
import static org.mockito.Mockito.*;
 
// mock creation
List mockedList = mock(List.class);
 
// using mock object - it does not throw any "unexpected interaction" exception
mockedList.add("one");
mockedList.clear();
 
// selective, explicit, highly readable verification
verify(mockedList).add("one");
verify(mockedList).clear();
 
stub method calls
 
// you can mock concrete classes, not only interfaces
LinkedList mockedList = mock(LinkedList.class);
 
// stubbing appears before the actual execution
when(mockedList.get(0)).thenReturn("first");
 
// the following prints "first"
System.out.println(mockedList.get(0));
 
// the following prints "null" because get(999) was not stubbed
System.out.println(mockedList.get(999));

Hope that helps. 


This site is for software testing professionals, where you can ask all your questions and get answers from 1300+ masters of the profession. Click here to submit yours now!

...