Search Java Code Snippets


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





#Java - Code Snippets for '#Mock' - 3 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 static org.easymock.EasyMock.expect

    public void testAuthenticateKnownUserWithExpiredCertificateYieldsNull() {

X509Certificate[] certificateChain = createExpiredCertificateChain("bob");

PublicKey publickey = certificateChain[0].getPublicKey();



when(m_servletRequest.getAttribute(ATTRIBUTE_X509_CERTIFICATE)).thenReturn(certificateChain);



User user = mock(User.class);

when(user.getName()).thenReturn("bob");

when(user.hasCredential(eq("publickey"), eq(publickey.getEncoded()))).thenReturn(Boolean.TRUE);



when(m_userAdmin.getUser(eq("username"), eq("bob"))).thenReturn(user);



User result = createAuthorizationProcessor().authenticate(m_userAdmin, m_servletRequest);

assert result == null : "Did not expect a valid user to be returned!";

}


   Like      Feedback      static org.easymock.EasyMock.expect


 Sample 3. Code Sample / Example / Snippet of static org.mockito.Mockito.mock

    public void setUp() throws Exception {

String range = "1-100000";

Repository mock = new MockDeploymentRepository(range, generateHugeTestXml(), null);

m_backend = new RepositoryBasedProvider();

TestUtils.configureObject(m_backend, Repository.class, mock);

TestUtils.configureObject(m_backend, LogService.class);

}


   Like      Feedback      static org.mockito.Mockito.mock



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