Search Java Code Snippets


  Help us in improving the repository. Add new snippets through 'Submit Code Snippet ' link.





#Java - Code Snippets for '#Mockito.when' - 2 code snippet(s) found

 Sample 1. Mocking a method call within Junit Test

@Test
public void test(){
   Employee employee = new Employee();
   employee.setId(123l);   
   DBAccess dbAccess = Mockito.mock(DBAccess.class);
   Mockito.when(dbAccess.getEmployeeInfo(Mockito.anyLong()).thenReturn(null);
}

   Like      Feedback     unit testing  junit  mockito  mocking frameworks  mockito.mock  mockito.when  mockito.anylong  mockito.thenreturn


 Sample 2. Code Sample / Example / Snippet of org.apache.hc.core5.http.impl.io.HttpService

    public void testBasicProtocolDowngrade() throws Exception {

final HttpProcessor httprocessor = Mockito.mock(HttpProcessor.class);

final ConnectionReuseStrategy connReuseStrategy = Mockito.mock(ConnectionReuseStrategy.class);

final HttpResponseFactory responseFactory = Mockito.mock(HttpResponseFactory.class);

final HttpRequestHandlerMapper handlerResolver = Mockito.mock(HttpRequestHandlerMapper.class);



final HttpService httpservice = new HttpService(

httprocessor,

connReuseStrategy,

responseFactory,

handlerResolver);

final HttpCoreContext context = HttpCoreContext.create();

final HttpServerConnection conn = Mockito.mock(HttpServerConnection.class);

final HttpRequest request = new BasicHttpRequest("GET", "/", new HttpVersion(20, 45));

Mockito.when(conn.receiveRequestHeader()).thenReturn(request);

final HttpResponse response = new BasicHttpResponse(200, "OK");

Mockito.when(responseFactory.newHttpResponse(200, context)).thenReturn(response);

Mockito.when(connReuseStrategy.keepAlive(request, response, context)).thenReturn(Boolean.FALSE);



httpservice.handleRequest(conn, context);



Mockito.verify(responseFactory).newHttpResponse(200, context);

}


   Like      Feedback      org.apache.hc.core5.http.impl.io.HttpService



Subscribe to Java News and Posts. Get latest updates and posts on Java from Buggybread.com
Enter your email address:
Delivered by FeedBurner