Package com.apress.prospring.data

Examples of com.apress.prospring.data.EntryDao


  private MockControl auditServiceControl;
  private AuditService auditService;

  public void setUp() {
    CommentDao commentDao;
    EntryDao entryDao;

    entryDao = (EntryDao) MockControl.createControl(EntryDao.class).getMock();
    commentDao = (CommentDao) MockControl.createControl(CommentDao.class).getMock();

    auditServiceControl = MockControl.createControl(AuditService.class);
View Full Code Here

TOP

Related Classes of com.apress.prospring.data.EntryDao

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.