Package org.aburlacu.test.service

Examples of org.aburlacu.test.service.ContactServiceImpl


  private final String EMAIL = "test@email.com";
  private final String PHONE = "+112432432432";
 
  @Before
  public void init() {
    contactService = new ContactServiceImpl();
    contactDAO = EasyMock.createMock(ContactDAO.class);
   
    ReflectionTestUtils.setField(contactService, "contactDAO", contactDAO);
  }
View Full Code Here

TOP

Related Classes of org.aburlacu.test.service.ContactServiceImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.